/* --------------------------------------------------------
  Mixins
-------------------------------------------------------- */
/* --------------------------------------------------------
  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,
main,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input[type=submit],
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  -webkit-font-smoothing: antialiased;
}

html {
  overscroll-behavior: none;
  overflow-x: clip;
}

body {
  background: #ffffff;
  overscroll-behavior-y: none;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

a,
input[type=checkbox] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img {
  vertical-align: middle;
}

*:focus {
  outline: none;
}

:root {
  --header-height: 60px;
}

/* --------------------------------------------------------
  Base Styles
-------------------------------------------------------- */
html {
  font-family: "din-2014", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, Verdana, Meiryo, sans-serif;
  font-size: 62.5%;
}

body {
  color: #333333;
  padding-top: var(--header-height);
  font-size: 1.6rem;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 6vw;
  }
}
@media (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}

@media (min-width: 769px) {
  .spOnly {
    display: none;
  }
}

.solutionBlockImage {
  flex: 0 0 540px;
  background: #d9d9d9;
  overflow: hidden;
}
.solutionBlockImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .solutionBlockImage {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }
}

/* Layout */
.headerContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background-color: #ffffff;
}
.headerContainer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.hamMenu {
  display: flex;
  text-align: center;
}

.headerContainer input {
  display: none;
}

.headLogoSiz {
  display: flex;
  align-items: center;
  z-index: 2;
}
.headLogoSiz img {
  display: block;
  width: 118px;
  height: 26px;
}

@media screen and (min-width: 769px) {
  .glbNav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    margin: auto;
  }
  .hamBtn {
    display: none;
  }
}
.glbNav a {
  color: #99a3a8;
}
.glbNav a:visited, .glbNav a:link {
  color: #99a3a8;
}

.glbList {
  display: flex;
  text-align: left;
  font-size: 16px;
}
.glbList a {
  padding: 0 0 0 34px;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.6px;
  font-weight: 500;
  display: block;
  position: relative;
}
.glbList a span {
  color: #99a3a8;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .headerContainer {
    height: var(--header-height);
  }
  .headerContainer .wrapper {
    position: relative;
    height: 100%;
  }
  .glbNav {
    opacity: 0;
    transform: translateY(-110%);
    position: fixed;
    overflow: hidden;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh + 32px);
    padding: 34px 6vw 0;
    background-color: #ffffff;
  }
  .glbList {
    display: block;
    position: absolute;
    top: 145px;
    left: 55px;
    width: fit-content;
  }
  .glbList a {
    font-size: min(7.1vw, 31px);
    line-height: 2.2;
    padding: 0;
  }
  .hamMenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hamBtn {
    width: 40px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    position: relative;
    flex-shrink: 0;
  }
  .hamBtn span {
    width: 19px;
    border-bottom: solid 1px #000000;
    display: block;
    position: absolute;
    right: 0;
    z-index: 500;
  }
  .hamBtn span:nth-child(1) {
    top: 21px;
  }
  .hamBtn span:nth-child(2) {
    top: 28px;
  }
  .hamBtn span:nth-child(3) {
    top: 35px;
  }
  input[type=checkbox]:checked ~ .hamBtn span:nth-child(1) {
    top: 28px;
    right: 0;
    transform: rotate(-45deg);
    width: 20px;
  }
  input[type=checkbox]:checked ~ .hamBtn span:nth-child(2), input[type=checkbox]:checked ~ .hamBtn span:nth-child(3) {
    top: 28px;
    right: 0;
    transform: rotate(45deg);
    width: 20px;
  }
  input[type=checkbox]:checked ~ .glbNav {
    opacity: 1;
    overflow-y: scroll;
    transform: translateY(0);
    z-index: -1;
  }
}
.service .glbListService a,
.solution .glbListService a,
.works .glbListWorks a,
.contact .glbListContact a {
  color: #0068b7;
  position: relative;
}

.service .glbListService a span,
.solution .glbListService a span,
.works .glbListWorks a span,
.contact .glbListContact a span {
  color: #0068b7;
}

@media screen and (min-width: 769px) {
  .service .glbListService a::after,
  .solution .glbListService a::after,
  .works .glbListWorks a::after,
  .contact .glbListContact a::after {
    content: "";
    background: #0068b7;
    position: absolute;
    border-radius: 14px;
    width: 4px;
    height: 4px;
    top: 6px;
    right: -6px;
  }
}
@media screen and (max-width: 768px) {
  .glbList a span {
    position: relative;
  }
  .service .glbListService a span::after,
  .solution .glbListService a span::after,
  .works .glbListWorks a span::after,
  .contact .glbListContact a span::after {
    content: "";
    background: #0068b7;
    position: absolute;
    border-radius: 14px;
    width: 6px;
    height: 6px;
    top: 2px;
    right: -13px;
  }
}
#footer {
  position: relative;
  background: #0068b7;
  color: #a5aeb3;
  margin-top: auto;
  padding: 40px 0;
}
#footer a {
  text-decoration: none;
  color: #a5aeb3;
  transition: all 0.3s;
}
#footer .footerContainer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
#footer .footerLogo img {
  width: 167px;
  height: auto;
  transition: filter 0.2s;
}
#footer .footerLinks {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
#footer .footerLinks li {
  margin-bottom: 1.7rem;
  line-height: 1;
}
#footer .footerLinks li:last-child {
  margin-bottom: 0;
}
#footer .footerLinks a {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
}
#footer .footerLinks .iconExternal {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  position: relative;
  top: 1px;
  margin-right: 8px;
}
#footer .footerLinks .iconExternal path {
  fill: #a5aeb3;
  transition: all 0.3s;
}
#footer .footerCopyright {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  color: #a5aeb3;
  transition: color 0.3s;
  line-height: 1;
}
#footer .footerCopyright small {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
#footer .footerCopyright i {
  position: relative;
  top: -1px;
  font-style: italic;
}

@media screen and (min-width: 769px) {
  #footer a:hover {
    color: #ffffff;
  }
  #footer a:hover .iconExternal path {
    fill: #ffffff;
  }
  #footer .footerLogo a:hover img {
    filter: brightness(0) invert(1);
  }
  #footer .footerCopyright:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 4.1rem 0;
  }
  #footer .footerContainer {
    display: block;
  }
  #footer .footerLogo {
    margin-bottom: 4rem;
  }
  #footer .footerLogo img {
    width: 167px;
    height: auto;
  }
  #footer .footerLinks {
    text-align: left;
    margin-bottom: 3.6rem;
  }
  #footer .footerLinks li {
    margin-bottom: 1.7rem;
  }
  #footer .footerLinks li:first-child {
    margin-bottom: 4rem;
  }
  #footer .footerLinks a {
    font-size: 1.2rem;
  }
  #footer .footerCopyright {
    position: static;
  }
  #footer .footerCopyright small {
    font-size: 1.1rem;
    letter-spacing: 0.8px;
  }
}
/* Components */
.solutionCard {
  background: #0068b7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.solutionCardImage {
  width: 100%;
  height: 220px;
  background: #e9ecef;
}
.solutionCardImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.solutionCardLabel {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  padding-top: 16px;
  text-transform: uppercase;
}

.solutionCardTitle {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 10px;
  line-height: 27px;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-left: 7px solid #a5aeb3;
  padding-left: 12px;
}

.solutionCardOutline {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: auto;
}

.solutionCardLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #0068b7;
  background: #ffffff;
  border: 1px solid #0068b7;
  margin-top: 16px;
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.solutionCardLink .solutionCardLinkArrow {
  width: 7px;
  height: 12px;
  margin-left: 11px;
  flex-shrink: 0;
}
.solutionCardLink:hover {
  background: #0068b7;
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .solutionCardImage {
    height: auto;
  }
  .solutionCardImage img {
    height: auto;
  }
  .solutionCardLabel {
    font-size: 10px;
    letter-spacing: -0.5px;
    padding: 9px 0 0;
  }
  .solutionCardTitle {
    font-size: 18px;
    line-height: 18px;
    height: auto;
    min-height: 55px;
    margin-top: 0px;
    border-left: none;
    padding-left: 10px;
    position: relative;
  }
  .solutionCardTitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: #a5aeb3;
  }
  .solutionCardOutline {
    font-size: 12px;
    line-height: 16px;
    margin-top: 0px;
  }
  .solutionCardLink {
    width: 84px;
    height: 20px;
    font-size: 11px;
    line-height: 12px;
    letter-spacing: -0.7%;
    padding: 4px 6px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .solutionCardLink .solutionCardLinkArrow {
    width: 5px;
    height: 9px;
    margin-left: 5px;
  }
}
.contactContainer {
  background: #f0f0f0;
  padding: 100px 0;
}
.contactContainer .contactCard {
  background: #a5aeb3;
  border-radius: 4px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
.contactContainer .contactContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.contactContainer .contactTitle {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 38px;
}
.contactContainer .contactButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 29px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  background: #0068b7;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  position: relative;
  line-height: 26.35px;
  flex-shrink: 0;
}
.contactContainer .contactButton .contactButtonArrow {
  width: 6.5px;
  height: 13px;
  margin-left: 18px;
}
.contactContainer .contactButton:hover {
  background: #ffffff;
  color: #0068b7;
}

@media (max-width: 768px) {
  .contactContainer {
    padding: 50px 0;
  }
  .contactContainer .contactCard {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 31px 45px 40px;
  }
  .contactContainer .contactTitle {
    font-size: 22px;
    font-weight: 700;
    line-height: 35.2px;
    text-align: center;
  }
  .contactContainer .contactButton {
    width: 180px;
    height: 32px;
    padding: 0 20px;
    margin: 0 auto;
    align-self: center;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0%;
  }
  .contactContainer .contactButton .contactButtonArrow {
    width: 6px;
    height: 10px;
    margin-left: 16px;
  }
}
/* Project */
.serviceSectionContainer {
  background: #f0f0f0;
  padding: 79px 0 73px;
}
.serviceSectionContainer .serviceSectionLabel {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.44px;
  color: #0068b7;
  text-align: left;
}
.serviceSectionContainer .serviceSectionImage {
  width: 100%;
  padding: 0;
}
.serviceSectionContainer .serviceSectionImage img {
  height: auto;
  display: block;
  margin: 0 auto;
}
.serviceSectionContainer .serviceSectionImage .pcOnly {
  width: 100%;
  max-width: 1219px;
}
@media (max-width: 768px) {
  .serviceSectionContainer .serviceSectionImage .pcOnly {
    display: none;
  }
}
.serviceSectionContainer .serviceSectionImage .spOnly {
  width: 349px;
  margin-top: -30px;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .serviceSectionContainer .serviceSectionImage .spOnly {
    display: none;
  }
}
.serviceSectionContainer .serviceSectionSubTitle {
  font-size: 30px;
  font-weight: 700;
  color: #0068b7;
  margin-bottom: -10px;
}
.serviceSectionContainer .serviceSectionMainTitle {
  font-size: 60px;
  font-weight: 700;
  line-height: 100px;
  color: #0068b7;
  letter-spacing: 0.02em;
}

.ourSolutionsContainer {
  background: #0068b7;
  padding: 94px 0 91px;
}
.ourSolutionsContainer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ourSolutionsContainer .ourSolutionsContent {
  flex: 1;
  color: #ffffff;
  display: block;
  margin: 0 auto;
  align-items: center;
}
.ourSolutionsContainer .ourSolutionsLabel {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2%;
  margin-bottom: 10px;
  color: #ffffff;
}
.ourSolutionsContainer .ourSolutionsTitle {
  font-size: 30px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.ourSolutionsContainer .ourSolutionsDescription {
  width: 670px;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -3%;
}
.ourSolutionsContainer .ourSolutionsImage {
  flex: 1;
  position: relative;
  left: -10px;
  width: 100%;
  display: block;
  transform: scale(0.96);
  transform-origin: right center;
}
.ourSolutionsContainer .ourSolutionsImage img {
  width: 612px;
  object-fit: contain;
}

.solutionCardsContainer {
  background: #0068b7;
  padding-bottom: 100px;
  scroll-margin-top: calc(var(--header-height) + 40px);
}
.solutionCardsContainer .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, 346px);
  justify-content: center;
  padding: 0;
  column-gap: 41px;
  row-gap: 70px;
}

.worksContainer {
  background: #0068b7;
  padding: 80px 0 100px;
  text-align: center;
}
.worksContainer .worksButton {
  width: 344px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0%;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  padding: 0 20px;
}
.worksContainer .worksButton .worksButtonArrow {
  width: 8px;
  height: 17px;
  margin-left: 19px;
}
.worksContainer .worksButton:hover {
  background: #ffffff;
  color: #0068b7;
}

@media (max-width: 768px) {
  .serviceSectionContainer {
    padding: 24px 0 32px;
  }
  .serviceSectionContainer .serviceSectionLabel {
    font-size: 16px;
    margin-bottom: 0;
  }
  .serviceSectionContainer .serviceSectionSubTitle {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 5px;
  }
  .serviceSectionContainer .serviceSectionMainTitle {
    font-size: 32px;
    line-height: 44px;
  }
  .ourSolutionsContainer {
    padding: 57px 0 80px;
  }
  .ourSolutionsContainer .wrapper {
    flex-direction: column;
    max-width: 500px;
  }
  .ourSolutionsContainer .ourSolutionsLabel {
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2%;
    margin-bottom: 8px;
    text-align: left;
  }
  .ourSolutionsContainer .ourSolutionsTitle {
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0%;
    margin-bottom: 18px;
    text-align: left;
  }
  .ourSolutionsContainer .ourSolutionsDescription {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 57px;
    text-align: left;
    width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .ourSolutionsContainer .ourSolutionsImage {
    max-width: 100%;
    padding: 0;
    left: 0;
    transform: scale(1.15);
    transform-origin: center;
  }
  .ourSolutionsContainer .ourSolutionsImage img {
    max-width: 100%;
    height: auto;
  }
  .solutionCardsContainer {
    padding-bottom: 54px;
    scroll-margin-top: calc(var(--header-height) + 24px);
  }
  .solutionCardsContainer .wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 6vw;
    column-gap: 16px;
    row-gap: 40px;
  }
  .worksContainer {
    padding: 44px 0 54px;
  }
  .worksContainer .worksButton {
    width: 240px;
    height: 37px;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
  }
  .worksContainer .worksButton .worksButtonArrow {
    width: 6px;
    height: 11px;
    margin-left: 16px;
  }
}
.solution {
  background-color: #ffffff;
}

.solutionTopContainer {
  padding: 123px 0 70px;
  background: #f0f0f0;
}

.solutionTopLabel {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  color: #0068b7;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.solutionTopTitle {
  font-size: 52px;
  font-weight: 700;
  line-height: 81px;
  margin-bottom: 17px;
  color: #0068b7;
}

.solutionTopDescription {
  font-size: 22px;
  line-height: 38px;
  color: #333333;
  font-weight: 700;
}

.blockStandardContainer {
  background: #ffffff;
}
.blockStandardContainer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 80px;
}

.blockStandardItem {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.blockStandardContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blockStandardHeading {
  font-size: 30px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 20px;
  color: #0068b7;
}

.blockStandardBody {
  font-size: 18px;
  line-height: 32px;
  color: #333333;
  font-weight: 700;
}

.blockHighlightContainer {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 68px;
}

.blockHighlightHeading1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
  color: #0068b7;
}

.blockHighlightImages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.blockHighlightImage {
  background: #d9d9d9;
  overflow: hidden;
  width: 100%;
}
.blockHighlightImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blockHighlightHeading2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 20px;
  color: #0068b7;
}

.blockHighlightBody {
  font-size: 18px;
  line-height: 32px;
  color: #333333;
  font-weight: 700;
}
.blockHighlightBody p {
  margin-bottom: 24px;
  line-height: 32px;
}
.blockHighlightBody p:last-child {
  margin-bottom: 0;
}
.blockHighlightBody h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}
.blockHighlightBody h2:first-child {
  margin-top: 0;
}
.blockHighlightBody h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.blockAlternatingContainer {
  background: #ffffff;
}
.blockAlternatingContainer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.blockAlternatingItem {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.blockAlternatingItem.left {
  flex-direction: row;
}
.blockAlternatingItem.right {
  flex-direction: row-reverse;
}

.blockAlternatingContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blockAlternatingHeading {
  font-size: 30px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 20px;
  color: #0068b7;
}

.blockAlternatingBody {
  font-size: 18px;
  line-height: 32px;
  color: #333333;
  font-weight: 700;
}

.returnSolutionContainer {
  background: #ffffff;
  text-align: center;
  padding: 100px 0;
}
.returnSolutionContainer .returnSolutionButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 48px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.6px;
  color: #333333;
  background: #ffffff;
  border: 1px solid #333333;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.returnSolutionContainer .returnSolutionButton .returnSolutionButtonArrow {
  width: 7px;
  height: 12px;
  margin-left: 15px;
}
.returnSolutionContainer .returnSolutionButton:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .solutionTopContainer {
    padding: 73px 0 52px;
  }
  .solutionTopLabel {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 17px;
  }
  .solutionTopTitle {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .solutionTopDescription {
    font-size: 16px;
    line-height: 1.8;
  }
  .blockStandardContainer .wrapper {
    gap: 60px;
    padding-top: 60px;
  }
  .blockStandardItem {
    flex-direction: column;
    gap: 16px;
  }
  .blockStandardHeading {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .blockStandardBody {
    font-size: 15px;
    line-height: 1.8;
  }
  .blockHighlightContainer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .blockHighlightHeading1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .blockHighlightImages {
    gap: 20px;
    margin-bottom: 40px;
  }
  .blockHighlightImage {
    height: auto;
    aspect-ratio: 16/9;
  }
  .blockHighlightHeading2 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .blockHighlightBody {
    font-size: 15px;
    line-height: 1.8;
  }
  .blockAlternatingContainer .wrapper {
    gap: 60px;
  }
  .blockAlternatingItem.left,
  .blockAlternatingItem.right {
    flex-direction: column;
  }
  .blockAlternatingItem {
    gap: 30px;
  }
  .blockAlternatingHeading {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .blockAlternatingBody {
    font-size: 15px;
    line-height: 1.8;
  }
  .returnSolutionContainer {
    padding: 60px 0;
  }
  .returnSolutionContainer .returnSolutionButton {
    width: 240px;
    height: 34px;
    font-size: 14px;
    line-height: 14.9px;
    text-wrap: nowrap;
  }
  .returnSolutionContainer .returnSolutionButton .returnSolutionButtonArrow {
    width: 5px;
    height: 11px;
    margin-left: 9px;
  }
}
.contact .contactTitle {
  padding: 80px 0 40px;
  color: #0068b7;
  font-size: 22px;
  font-weight: 700;
}
.contact .formDescription {
  margin-bottom: 40px;
}
.contact .contactForm {
  margin-bottom: 80px;
}
.contact .zapierFormEmbed {
  width: 100%;
  height: 1500px;
  display: block;
}

@media (max-width: 768px) {
  .contact .contactTitle {
    font-size: 22px;
    padding: 24px 0 40px;
    line-height: 1;
  }
  .contact .formDescription {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 40px;
  }
  .contact .contactForm {
    margin-bottom: 15vw;
  }
  .contact .zapierFormEmbed {
    height: 1400px;
  }
}