@charset "UTF-8";
/* CSS outline -----------------------------------------------

  1.Reset

/*------------------------------------------------------------

1.Reset */
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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

html {
  font-size: 62.5%;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: bold;
}

a {
  max-width: 100%;
}

a,
a:visited,
a:active,
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  height: auto;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

input,
textarea {
  padding: 0 0.5rem;
  box-sizing: border-box;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

input:focus,
textarea:focus,
button:focus,
html input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: 0;
}

label {
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

iframe {
  max-width: 100%;
}

/*------------------------------------------------------------

1.Default */
/*------------------------------------------------------------

2.Element */
/*------------------------------------------------------------

1.Font */
/*------------------------------------------------------------

1.Clear fix */
/*------------------------------------------------------------

1.Clear fix */
/*------------------------------------------------------------

1.Position */
/* CSS outline -----------------------------------------------

  1.Common
  2.Wrapper

/*------------------------------------------------------------

1.Common */
body {
  -webkit-appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.7px;
  background-color: #f3f3f3;
  min-height: 100vh;
}

a {
  color: #000;
  transition: all 0.3s;
  transition-duration: all 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: 0.6;
}

select {
  -webkit-appearance: none;
}

.pc-none {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

/*------------------------------------------------------------

1.Wrapper */
.wrap {
  margin: auto;
  width: 100%;
  padding-bottom: 30px;
  min-height: 100vh;
  background-image: linear-gradient(90deg, rgb(24, 112, 227), rgb(130, 244, 255));
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: url("../images/bg-layer.png") repeat-y top left/100% auto;
  z-index: 0;
}

/* CSS outline -----------------------------------------------

  1.Header

/*------------------------------------------------------------

1.Header */
.l-sidebar {
  background-color: #ffdf7e;
  max-width: 60px;
  width: 100%;
  min-height: calc(100vh - 25px);
  border-radius: 10px 10px 0 0;
  transition: all 0.3s;
}
.l-sidebar .is-nomal {
  display: none;
}
.l-sidebar:hover {
  max-width: 340px;
}
.l-sidebar:hover .is-nomal {
  display: block;
}
.l-sidebar:hover .is-small {
  display: none;
}
.l-sidebar__logo-link {
  padding: 30px 15px;
  display: flex;
  justify-content: center;
}
.l-sidebar__logo-img {
  max-height: 52px;
  width: 100%;
}

.l-nav__list {
  display: flex;
  flex-flow: column;
}
.l-nav__item + .l-nav__item {
  margin-top: 5px;
}
.l-nav__link {
  display: flex;
  align-items: center;
  width: calc(100% - 25px);
  padding: 18px 27px;
  border-radius: 0 50px 50px 0;
  color: #5d626e;
}
.l-nav__link:hover {
  background-color: #f2e7c2;
}
.l-nav__link.is-active {
  background-color: #fff4d2;
  color: #000;
}
.l-nav__link.is-active:hover {
  background-color: #fff4d2;
}
.l-nav__icon {
  font-size: 20px;
  padding-right: 10px;
}
.l-nav__txt {
  display: none;
  height: 22px;
  overflow: hidden;
}

.l-nav-sub {
  margin-top: 200px;
}
.l-nav-sub__list {
  display: flex;
  flex-flow: column;
}
.l-nav-sub__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 0 50px 50px 0;
  color: #5d626e;
}
.l-nav-sub__link:hover {
  background-color: #f2e7c2;
}
.l-nav-sub__icon {
  font-size: 20px;
  padding-right: 10px;
}
.l-nav-sub__txt {
  display: none;
  height: 22px;
  overflow: hidden;
}

.l-user {
  border-top: 1px solid #fff4d3;
  padding: 18px 27px;
  display: flex;
  align-items: center;
}
.l-user__icon-wrap {
  margin-right: 10px;
  display: flex;
  align-items: center;
  width: 40px;
}
.l-user__icon-img {
  width: 100%;
}
.l-user__info-wrap {
  display: flex;
  flex-flow: column;
}
.l-user__info-position {
  font-size: 10px;
  height: 15px;
  overflow: hidden;
  display: block;
}
.l-user__info-name {
  height: 22px;
  overflow: hidden;
}
.l-user__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* CSS outline -----------------------------------------------

  1.Index

/*------------------------------------------------------------

1.mainVisual */
.dashboard {
  background-color: #F4F4F4;
  padding: 135px 0;
}
.dashboard__body {
  margin: 0 auto;
  max-width: 1200px;
}
.dashboard__title {
  margin-bottom: 40px;
  font-size: 3.8rem;
  font-weight: 800;
}
.dashboard__search {
  margin-bottom: 20px;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
}
.dashboard__input {
  position: relative;
  margin-bottom: 20px;
}
.dashboard__input::before {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 20px;
  content: url(../images/dashboard/search.svg);
  display: block;
}
.dashboard__input input {
  padding: 10px;
  padding-left: 30px;
  width: 100%;
  border: none;
  font-size: 14px;
  border-bottom: 1px solid #000;
}
.dashboard__selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.dashboard__selectbox .ms-drop.bottom {
  border: 0;
  border-radius: 2px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.dashboard__selectbox .ms-choice {
  border: 0;
}
.dashboard__selectbox .ms-choice > span {
  padding-left: 0;
  font-size: 14px;
}
.dashboard__selectbox .ms-choice > div.icon-caret {
  position: absolute;
  top: 7px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 0;
  border-top: 0;
  transform: rotate(-45deg);
  content: "";
  pointer-events: none;
}
.dashboard__selectbox .ms-drop ul > li {
  padding: 15px;
  padding-top: 0;
}
.dashboard__selectbox .ms-drop ul > li:first-child {
  padding-top: 15px;
}
.dashboard__selectbox .ms-drop ul > li label span {
  margin-left: 10px;
}
.dashboard__selectbox .ms-drop input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: #D9D9D9;
  appearance: none;
}
.dashboard__selectbox .ms-drop input[type=checkbox]:checked {
  background-color: #000;
}
.dashboard__selectbox .ms-drop input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #FAEE01;
  border-bottom: 2px solid #FAEE01;
  content: "";
}
.dashboard__selectbox select {
  appearance: none;
  height: 2.8em;
  padding: 2;
  border: none;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.dashboard__selectbox select:focus {
  outline: none;
}
.dashboard__list-wrap {
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 2px;
}
.dashboard__item {
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}
.dashboard__item a {
  display: grid;
  grid-template-columns: 2fr 4fr 1fr 1fr;
  align-items: center;
}
.dashboard__list-headline {
  padding: 0;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 2fr 4fr 1fr 1fr;
  font-weight: 800;
}
.dashboard__company {
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.dashboard__company-logo {
  margin-right: 15px;
  max-width: 50px;
}
.dashboard__company-name {
  font-weight: 800;
}
.dashboard__seals {
  padding-left: 20px;
  padding-right: 10px;
  font-weight: 800;
  color: #D8BC2A;
}
.dashboard__profit {
  padding-left: 10px;
  padding-right: 20px;
  font-weight: 800;
}
.dashboard__profit--plus {
  color: #FF497F;
}
.dashboard__profit--minus {
  color: #5AD4A8;
}
.dashboard__pagination {
  margin: 30px 0;
}
.dashboard__pagination-list {
  display: flex;
  justify-content: center;
}
.dashboard__pagination-item {
  margin: 0 5px;
}
.dashboard__pagination-link {
  padding: 8px 10px;
  border-radius: 100px;
  background-color: #eee;
  font-weight: 800;
}
.dashboard__pagination-link.active {
  background-color: #000;
  color: #FAEE01;
}

/*------------------------------------------------------------

1.mainVisual */
.s-about {
  margin: 70px auto 105px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.s-about__container {
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .s-about {
    margin: 10.2564102564vw auto;
  }
}
@media screen and (max-width: 768px) {
  .s-about__container {
    width: 89.7435897436vw;
    margin: auto;
  }
}
.s-about__title {
  margin-bottom: 60px;
  font-size: min(4.1666666667vw, 46px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .s-about__title {
    font-size: 7.6923076923vw;
  }
}
.s-about__text {
  text-align: center;
  font-size: min(1.8055555556vw, 20px);
  line-height: 1.4615384615;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 768px) {
  .s-about__text {
    margin-top: 8.9743589744vw;
    font-size: 4.1025641026vw;
  }
}

/* CSS outline -----------------------------------------------

  1.Index

/*------------------------------------------------------------

1.mainVisual */
.overlay {
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.6s, visibility 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 0; /* メニューよりも下にする */
}

.overlay.is-active {
  opacity: 0.8;
  visibility: visible;
}

.header {
  width: 100%;
  padding: 1.6666666667vw 2.7777777778vw 0;
  position: fixed;
  top: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  z-index: 9999;
}
.header__inner {
  mix-blend-mode: difference;
}
@media screen and (max-width: 768px) {
  .header__inner.is-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #073f7b;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .header__hamburger::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    background: #073f7b;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    opacity: 1;
    transition: all 0.3s;
  }
  .header__hamburger::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    background: #073f7b;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .header__hamburger.is-active {
    transform: translateY(3px) rotate(-45deg);
    background: #fff;
  }
  .header__hamburger.is-active::before {
    opacity: 0;
    background: #fff;
  }
  .header__hamburger.is-active::after {
    transform: translateY(-12px) rotate(90deg);
    background: #fff;
  }
}
.header__logo {
  position: relative;
  width: 17.9166666667vw;
  display: flex;
  align-items: center;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 33.0769230769vw;
    position: relative;
    top: 6px;
    left: 1.5384615385vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
    transform: translateX(100%);
    transition: ease 0.4s;
  }
  .header__nav.is-active {
    display: block;
    transform: translateX(0%);
  }
  .header__nav.is-active .header__list {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 6.1538461538vw;
  }
  .header__nav.is-active .header__item a {
    color: #fff;
    font-size: 4.1025641026vw;
  }
}
.header__list {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.6666666667vw;
  align-items: center;
}
.header__item a {
  font-size: 1.0416666667vw;
  font-weight: 500;
  color: #073f7b;
}
.header__item:nth-of-type(3) {
  margin-right: 0.5555555556vw;
}

.cta {
  display: inline-block;
  border-radius: 4.6527777778vw;
  overflow: hidden;
}
.cta a {
  display: inline-block;
  padding: 1.3888888889vw 4.6527777778vw;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
  background-image: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(242, 190, 134) 50%, rgb(255, 187, 38) 50%, rgb(255, 187, 38) 88%, rgb(246, 222, 115) 100%);
  background-position: 0% 50%;
  background-size: 200% auto;
}
.cta a:hover {
  background-position: 100% 50%;
  opacity: 1;
  color: #ef740f;
}
@media screen and (max-width: 768px) {
  .cta a {
    line-height: 2;
    padding: 5.1282051282vw 4.1025641026vw;
    font-size: 5.1282051282vw;
  }
}
.cta--nav a {
  line-height: 1.5;
  padding: 0.8333333333vw 1.4583333333vw;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .cta--nav a {
    line-height: 2;
    border-radius: 8.5897435897vw;
    padding: 3.0769230769vw 5.3846153846vw;
    font-size: 4.1025641026vw;
  }
}
@media screen and (max-width: 768px) {
  .cta--hero {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cta--hero a {
    width: inherit;
    text-align: center;
  }
}
.cta--contact a {
  line-height: 1.875;
  padding: 1.4583333333vw 5.2777777778vw;
  font-size: 1.4583333333vw;
}
@media screen and (max-width: 768px) {
  .cta--contact a {
    padding: 5.1282051282vw 4.1025641026vw;
    font-size: 5.1282051282vw;
    width: inherit;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .cta--contact {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    border-radius: 15.8974358974vw;
  }
}

.hero {
  position: relative;
  z-index: 100;
  padding: 11.6666666667vw 11.1111111111vw;
  background: url("../images/img-hero.png") no-repeat top center/100% auto;
}
.hero__copy {
  font-size: 2.2222222222vw;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.hero__copy em {
  font-size: 2.7777777778vw;
  color: #073f7b;
}
@media screen and (max-width: 768px) {
  .hero__copy em {
    font-size: 9.2307692308vw;
  }
}
.hero__copy + * {
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 768px) {
  .hero__copy + * {
    margin-top: 8.2051282051vw;
  }
}
@media screen and (max-width: 768px) {
  .hero__copy {
    font-size: 7.1794871795vw;
  }
}
.hero__heading {
  font-size: 1.3888888889vw;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hero__heading {
    font-size: 5.1282051282vw;
  }
}
.hero__heading + * {
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .hero__heading + * {
    margin-top: 12.3076923077vw;
  }
}
.hero__logo {
  display: inline-block;
  width: 17.9166666667vw;
  margin-top: 0.5555555556vw;
}
@media screen and (max-width: 768px) {
  .hero__logo {
    width: 66.1538461538vw;
    margin-top: 2.0512820513vw;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 0 8.2051282051vw 26.9230769231vw;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: url("../images/img-hero-sp.png") no-repeat top right/100% auto;
    height: 100vh;
  }
}

.about {
  padding: 6.6666666667vw 0 12.7777777778vw 17.2222222222vw;
  background: url("../images/img-about.png") no-repeat bottom 0 right 40px/57.3611111111vw auto;
  position: relative;
  z-index: 10;
}
.about__heading {
  font-size: 2.2222222222vw;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
.about__heading em {
  font-size: 2.7777777778vw;
  color: #073f7b;
}
@media screen and (max-width: 768px) {
  .about__heading em {
    font-size: 9.2307692308vw;
  }
}
.about__heading + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__heading + * {
    margin-top: 10.2564102564vw;
  }
}
@media screen and (max-width: 768px) {
  .about__heading {
    font-size: 7.1794871795vw;
  }
}
.about__text {
  width: 23.6111111111vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}
.about__text em {
  font-weight: bold;
  color: #073f7b;
}
@media screen and (max-width: 768px) {
  .about__text {
    width: 87.1794871795vw;
    font-size: 4.1025641026vw;
  }
}
.about + * {
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .about + * {
    margin-top: 12.3076923077vw;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 23.0769230769vw 8.2051282051vw 66.6666666667vw;
    background: url("../images/img-about.png") no-repeat bottom 0 right 20px/89.7435897436vw auto;
  }
}

.service__list {
  margin-left: 14.1666666667vw;
  display: flex;
  flex-flow: column;
  gap: 1.6666666667vw;
}
@media screen and (max-width: 768px) {
  .service__list {
    margin: 0 4.1025641026vw;
    gap: 8.2051282051vw;
  }
}
.service__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 30.5555555556vw;
}
.service__item::after {
  width: 60.5555555556vw;
  height: 30.5555555556vw;
  top: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .service__item::after {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/0.505;
    left: 4.1025641026vw;
  }
}
.service__item:nth-of-type(1)::after {
  content: "";
  position: absolute;
  background: url("../images/img-service01.png") no-repeat top left/100% auto;
}
.service__item:nth-of-type(2)::after {
  content: "";
  position: absolute;
  background: url("../images/img-service02.png") no-repeat top left/100% auto;
}
.service__item:nth-of-type(3)::after {
  content: "";
  position: absolute;
  background: url("../images/img-service03.png") no-repeat top left/100% auto;
}
@media screen and (max-width: 768px) {
  .service__item {
    padding: 35.8974358974vw 0 0;
    height: fit-content;
  }
}
.service__inner {
  padding: 2.7777777778vw;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  width: 35vw;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 10.2564102564vw;
    width: 100%;
  }
}
.service__heading {
  font-size: 1.4583333333vw;
  font-weight: bold;
  line-height: 1.6;
  color: #073f7b;
}
.service__heading em {
  font-size: 1.6666666667vw;
}
@media screen and (max-width: 768px) {
  .service__heading em {
    font-size: 6.1538461538vw;
  }
}
.service__heading + * {
  margin-top: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .service__heading + * {
    margin-top: 4.1025641026vw;
  }
}
@media screen and (max-width: 768px) {
  .service__heading {
    font-size: 5.3846153846vw;
    white-space: nowrap;
  }
}
.service__text {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 2;
  color: #073f7b;
}
@media screen and (max-width: 768px) {
  .service__text {
    font-size: 4.1025641026vw;
  }
}
.service + * {
  margin-top: 128px;
}
@media screen and (max-width: 768px) {
  .service + * {
    font-size: 32.8205128205vw;
  }
}
@media screen and (max-width: 768px) {
  .service {
    font-size: 5.3846153846vw;
  }
}

.workflow__heading {
  font-size: 2.2222222222vw;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.workflow__heading + * {
  margin-top: 3.8888888889vw;
}
@media screen and (max-width: 768px) {
  .workflow__heading + * {
    margin-top: 14.358974359vw;
  }
}
@media screen and (max-width: 768px) {
  .workflow__heading {
    font-size: 8.2051282051vw;
  }
}
.workflow__list {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 1.1111111111vw;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .workflow__list {
    flex-flow: column;
    font-size: 4.1025641026vw;
    gap: 4.1025641026vw;
  }
}
.workflow__item {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 2.2222222222vw 1.1111111111vw 2.0833333333vw;
  width: 15vw;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #073f7b;
  border-radius: 0.4166666667vw;
}
@media screen and (max-width: 768px) {
  .workflow__item {
    padding: 8.2051282051vw 4.1025641026vw 7.6923076923vw;
    width: 55.3846153846vw;
    border-radius: 1.5384615385vw;
  }
}
.workflow__num {
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: 0.4166666667vw 0 0.4166666667vw 0;
  background: #073f7b;
  padding: 0.6944444444vw 0.5555555556vw;
  font-family: roboto;
  width: 3.0555555556vw;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .workflow__num {
    border-radius: 1.5384615385vw 0 1.5384615385vw 0;
    padding: 2.5641025641vw 2.0512820513vw;
    width: 11.2820512821vw;
  }
}
.workflow__img {
  width: 12.6388888889vw;
}
.workflow__img + * {
  margin-top: 0.5555555556vw;
}
@media screen and (max-width: 768px) {
  .workflow__img + * {
    margin-top: 2.0512820513vw;
  }
}
@media screen and (max-width: 768px) {
  .workflow__img {
    width: 46.6666666667vw;
  }
}
.workflow__text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3333333333vw;
  font-size: 1.1111111111vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .workflow__text {
    min-height: 12.3076923077vw;
    font-size: 4.1025641026vw;
  }
}
.workflow + * {
  margin-top: 8.8888888889vw;
}
@media screen and (max-width: 768px) {
  .workflow + * {
    margin-top: 32.8205128205vw;
  }
}

.contact {
  position: relative;
  z-index: 10;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.contact__heading {
  font-family: roboto;
  font-size: 2.2222222222vw;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.1875;
  color: #fff;
  text-align: center;
}
.contact__heading + * {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .contact__heading + * {
    margin-top: 2.0512820513vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__heading {
    font-size: 8.2051282051vw;
  }
}
.contact__text {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.contact__text + * {
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 768px) {
  .contact__text + * {
    margin-top: 8.2051282051vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 4.1025641026vw;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    margin: 32.8205128205vw 8.2051282051vw 0;
  }
}

.footer {
  margin: 8.8888888889vw auto 0;
  position: relative;
  z-index: 10;
}
.footer__nav + * {
  margin-top: 1.25vw;
}
@media screen and (max-width: 768px) {
  .footer__nav + * {
    margin-top: 4.6153846154vw;
  }
}
.footer__list {
  display: flex;
  flex-flow: row;
  gap: 1.1111111111vw;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__list {
    gap: 4.1025641026vw;
  }
}
.footer__item a {
  font-size: 0.9027777778vw;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__item a {
    font-size: 3.3333333333vw;
  }
}
.footer .copyright {
  display: block;
  font-size: 0.7638888889vw;
  font-family: roboto;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    font-size: 2.8205128205vw;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin: 32.8205128205vw auto 0;
  }
}
