<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  color: #2a2f3e;
  background: url(../img/dot-bg.png) 0% 0%/20px 20px repeat;
  overflow-x: hidden;
}

.animation-curve {
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: 0;
}

.blue-path,
.yellow-path,
.white-path {
  animation-duration: 3s; /* アニメーションの時間を同じに */
  animation-timing-function: ease; /* アニメーションの進行速度を調整 */
  animation-fill-mode: forwards; /* アニメーションが終了後も最終状態を保持 */
}

.blue-path {
  animation: drawBlue 6s forwards;
}

.yellow-path {
  animation: drawYellow 2.5s forwards;
}

.cv__bg.animate .white-path {
  animation: drawWhite 2.5s ease forwards;
}

@keyframes drawWhite {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawBlue {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawYellow {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawWhite {
  to {
    stroke-dashoffset: 0;
  }
}
.section, .section--beige {
  padding: 80px;
}
.section--beige {
  background-color: #fbf8ee;
}

.section__title {
  color: #2a2f3e;
  margin-bottom: 64px;
}
.section__title p {
  color: #007aff;
  font-family: "Montserrat", serif;
  font-size: 2.6rem;
  opacity: 0.7;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 1.1px;
  margin-bottom: 16px;
}
.section__title h2 {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 2.2px;
}
.section__title h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 8px;
  background-color: #ffd700;
  margin-top: 16px;
  margin-inline: auto;
}

.inner {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.inner.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.button-cta, .button-cta--sp, .button-cta--fv {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 48px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 9999px;
  background-color: #007aff;
  box-shadow: 0px 4px 0px 0px #005edb;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.button-cta b, .button-cta--sp b, .button-cta--fv b {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}
.button-cta:hover, .button-cta--sp:hover, .button-cta--fv:hover {
  box-shadow: none;
  transform: translateY(4px);
  background-color: #268eff;
}
.button-cta--sp {
  display: none;
  width: 100%;
  border-radius: 0%;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #eee;
}
header.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.login {
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #eee;
  padding: 12px 16px;
  transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  height: auto;
}
.login.hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  border: none;
}
.login__inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.login__link {
  display: flex;
  gap: 6px;
  transition: -webkit-text-decoration 0.2s ease;
  transition: text-decoration 0.2s ease;
  transition: text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}
.login__link p {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 1px;
  color: #000;
}
.login__link p:hover {
  text-decoration: underline;
}
.login__link img {
  width: 12px;
}

.sticky-header {
  padding: 16px;
}
.sticky-header__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky-header__inner img {
  width: auto;
  height: 24px;
}

.header__button-list {
  display: flex;
  gap: 8px;
}
.header__button, .header__button--cta {
  display: flex;
  padding: 4px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.48px;
  border: 2px solid #007aff;
  color: #007aff;
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.header__button--cta {
  background: #007aff;
  color: #fff;
  gap: 8px;
}
.header__button--cta img {
  width: 14px;
}
.header__button:hover, .header__button--cta:hover {
  transform: translateY(2px);
}

.break-sp {
  display: none;
}

.mv {
  background-color: #fbf8ee;
  position: relative;
  background-position: calc(100% + 40px) bottom;
  display: flex;
  padding-top: 180px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mv__inner {
  display: flex;
  gap: 80px;
  width: 100%;
  max-width: 1120px;
  padding-inline: 48px;
  position: relative;
  overflow: hidden;
}
.mv__kv {
  position: absolute;
  right: -40px;
  z-index: 1;
}
.mv__point-list {
  display: flex;
  gap: 24px;
  margin: 0;
}
.mv__point-list li {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  font-weight: 700;
}
.mv__point-list--sp {
  display: none;
  gap: 24px;
  margin: 0;
}
.mv__point-list--sp li {
  padding: 8px 16px;
  font-size: 1.2rem;
}
.mv__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 80px;
  z-index: 2;
}
.mv__content__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mv__content__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #000;
}
.mv__content__title img {
  width: 160px;
}
.mv__content__desc {
  line-height: 175%;
  font-size: 1.6rem;
}

.intro {
  padding-block: 64px;
}
.intro__inner {
  max-width: 960px;
  margin-inline: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
}
.intro__image {
  width: 428px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__content {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}
.intro__content h2 {
  width: 100%;
  display: flex;
  align-items: end;
  gap: 8px;
}
.intro__content h2 img {
  width: 90px;
}
.intro__text {
  line-height: 150%;
  margin-bottom: 16px;
}
.intro__link {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  display: flex;
  gap: 8px;
  justify-content: center;
  border-bottom: 1.5px solid #2a2f3e;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}
.intro__link img {
  width: 16px;
  margin-top: 1px;
}
.intro__link:hover {
  background-color: #fff8cb;
}

.about__desc {
  font-size: 1.8rem;
  text-align: center;
  line-height: 150%;
  margin-bottom: 40px;
}

.case-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.case {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 24px;
  place-items: center;
  padding-inline: 40px;
  padding-block: 24px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
}
.case__image {
  width: 100%;
  max-width: 220px;
}
.case__text {
  font-size: 1.4rem;
  text-align: center;
  line-height: 175%;
  align-self: start;
}

.reword-system {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  position: relative;
}
.reword-system::after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 98%;
  height: 98%;
  background-color: #ffd700;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.reword-system__image {
  width: 640px;
  padding-block: 24px;
}
.reword-system__desc {
  padding-inline: 40px;
  padding-bottom: 40px;
}
.reword-system__text {
  padding-top: 40px;
  border-top: 1px solid #dddddd;
  line-height: 175%;
  text-align: center;
}
.reword-system__text span {
  line-height: 100%;
  background-color: #212121;
  color: #fff;
  padding: 6px 8px 8px 8px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.54px;
  display: inline-block;
  margin-top: 4px;
  margin-inline: 6px;
}
.reword-system__text span b {
  color: #ffd700;
}

.note {
  margin-top: 40px;
  font-weight: 300;
  font-size: 1.3rem;
}

.cv {
  background-color: #ffd740;
  position: relative;
}
.cv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 48px;
  margin-inline: auto;
  max-width: 960px;
  gap: 40px;
}
.cv__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}
.cv__content h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #096fde;
  letter-spacing: 1.2px;
}
.cv__content p {
  line-height: 175%;
  align-self: stretch;
  width: 100%;
}
.cv__image {
  z-index: 3;
  width: 100%;
  max-width: 640px;
}
.cv__bg {
  position: absolute;
  height: 100%;
  right: 40px;
}

.point-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(328px, 1fr));
  gap: 40px;
  width: 100%;
}

.point {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.point__title {
  padding: 16px 8px;
  width: 100%;
  background-color: #ffd700;
}
.point__title h3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.point__content {
  padding-block: 32px;
  padding-inline: 40px;
}
.point__image-wrapper {
  width: 100%;
  padding: 16px;
  margin-bottom: 24px;
  background-color: #fff8cb;
}
.point__image-wrapper img {
  height: 100%;
  margin-inline: auto;
}
.point__desc {
  padding: 4px;
  line-height: 150%;
  font-weight: 400;
}

.flow__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.flow__cta__text {
  font-size: 2rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 14px;
}
.flow__cta__text::after {
  content: "";
  display: block;
  position: absolute;
  right: -12px;
  bottom: 6px;
  width: 20px;
  height: 1.5px;
  transform: rotate(-60deg);
  background-color: #2a2f3e;
}
.flow__cta__text::before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  bottom: 6px;
  width: 20px;
  height: 1.5px;
  transform: rotate(60deg);
  background-color: #2a2f3e;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 40px;
  margin-bottom: 64px;
  width: 100%;
}

.step {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0px;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  width: 14px;
  height: 28px;
  -webkit-clip-path: polygon(0px 0px, 0% 100%, 100% 50%);
          clip-path: polygon(0px 0px, 0% 100%, 100% 50%);
  background-color: #ffd700;
  position: absolute;
  bottom: 50%;
  right: 0px;
  transform: translate(30px, 20px);
}
.step__title {
  background-color: #ffd700;
  align-self: stretch;
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  padding-block: 12px;
  border-radius: 8px 8px 0 0;
}
.step__title span {
  font-size: 2.8rem;
  margin-left: 4px;
}
.step__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  gap: 16px;
}
.step__content img {
  width: 64px;
}
.step__content p {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 150%;
}
.step--last {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffd700;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.contact {
  display: flex;
  justify-content: center;
  padding: 80px;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  background-color: #ffd700;
  box-shadow: 0px 5px 40px -5px rgba(0, 0, 0, 0.1);
  padding-block: 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.contact__content:hover {
  background-color: #ffe766;
}
.contact__content h4 {
  font-size: 2rem;
  font-weight: 600;
}
.contact__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__image {
  width: 32px;
  margin-top: 6px;
}
.contact__number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #007aff;
  letter-spacing: 3px;
}
.contact__time {
  font-size: 1.4rem;
  text-align: center;
}

.footer-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.footer {
  position: relative;
  padding: 48px 16px;
  z-index: 0;
  background-color: #2a2f3e;
}

.footer__link {
  position: relative;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__link::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -24px;
  width: 16px;
  height: 16px;
  background: url(../img/icon_blank_y.svg) no-repeat;
}

.footer__logo {
  width: 144px;
}

.footer__menu {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 12px;
}

.footer__menu li a {
  color: #fff;
}

.guideline {
  color: #fff;
  cursor: pointer;
}
.guideline summary {
  font-size: 1.4rem;
  font-weight: 600;
}
.guideline__submenu {
  margin-top: 12px;
  margin-left: 14px;
}
.guideline__submenu li {
  margin-bottom: 8px;
}
.guideline__submenu li a {
  font-size: 1.2rem;
  width: 100%;
  position: relative;
  color: #ddd;
}
.guideline__submenu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -24px;
  width: 14px;
  height: 14px;
  background: url(../img/icon_blank_y.svg) no-repeat;
}
.guideline__submenu li a:hover {
  text-decoration: underline;
}

.copyright {
  color: #fff;
}

@media (width &lt;= 1024px) {
  .animation-curve {
    width: 640px;
    bottom: -40px;
  }
  .mv {
    padding-top: 160px;
  }
  .mv__kv {
    width: 45%;
    position: absolute;
    top: 5%;
  }
  .mv__content {
    gap: 40px;
    padding-bottom: 80px;
  }
  .mv__content__text {
    gap: 24px;
  }
  .mv__content__title {
    font-size: 3rem;
  }
  .mv__content__title img {
    width: 120px;
  }
  .mv__content__desc {
    font-size: 1.4rem;
  }
  .intro__inner {
    flex-direction: column;
    max-width: 400px;
  }
  .intro__content {
    align-items: center;
    padding: 24px 24px;
    gap: 16px;
  }
  .intro__link {
    font-size: 1.4rem;
  }
  .intro__text {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .about__desc {
    text-align: left;
  }
  .about__desc br {
    display: none;
  }
  .case br {
    display: none;
  }
  .case__text {
    text-align: left;
  }
  .reword-system__text {
    text-align: left;
  }
  .reword-system__text br {
    display: none;
  }
  .cv__inner {
    flex-direction: column;
    gap: 24px;
    padding: 64px 64px 16px;
  }
  .cv__content {
    align-items: center;
    gap: 24px;
  }
  .cv__image {
    width: 70%;
    max-width: 400px;
    min-width: 240px;
  }
  .cv__bg {
    width: 80%;
    height: auto;
    bottom: -5%;
    right: -8%;
  }
  .step-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step {
    max-width: 480px;
  }
  .step:not(:last-child)::after {
    width: 24px;
    height: 10px;
    -webkit-clip-path: polygon(0px 0px, 100% 0px, 50% 100%);
            clip-path: polygon(0px 0px, 100% 0px, 50% 100%);
    bottom: 0px;
    left: 50%;
    transform: translate(-12px, 24px);
  }
  .step__content {
    flex-direction: row;
    padding: 24px;
    justify-content: center;
  }
  .step__content img {
    position: absolute;
    width: 40px;
    left: 24px;
  }
  .step--last {
    height: 120px;
    max-width: 560px;
  }
}
@media (width &lt;= 768px) {
  .animation-curve {
    width: 100%;
    top: 15%;
    right: 0;
  }
  .section, .section--beige {
    padding: 48px 20px;
  }
  .section--beige {
    background-color: #fbf8ee;
  }
  .button-cta, .button-cta--fv, .button-cta--sp {
    padding: 16px;
    width: 100%;
    max-width: 400px;
    z-index: 2;
  }
  .button-cta b, .button-cta--fv b, .button-cta--sp b {
    font-size: 1.8rem;
  }
  .button-cta--fv {
    display: none;
  }
  .button-cta--fv img {
    margin-bottom: 40px;
  }
  .button-cta--sp {
    display: flex;
    padding-block: 20px;
    max-width: 100%;
  }
  .section__title {
    margin-bottom: 24px;
  }
  .section__title p {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .section__title h2 {
    font-size: 2rem;
  }
  .section__title h2::after {
    width: 40px;
  }
  .header__button, .header__button--cta {
    font-size: 1.2rem;
    gap: 4px;
    padding: 5px 12px 6px;
  }
  .header__button img, .header__button--cta img {
    margin-top: 1px;
    width: 12px;
  }
  .login {
    padding: 8px 16px;
  }
  .sticky-header {
    padding: 12px 16px;
  }
  .sticky-header__inner img {
    height: 20px;
  }
  .mv {
    flex-direction: column;
    padding-top: 120px;
    justify-content: center;
  }
  .mv__inner {
    flex-direction: column;
    padding-inline: 24px;
    gap: 16px;
  }
  .mv__kv {
    inset: 0;
    position: relative;
    margin-inline: auto;
    min-width: 200px;
  }
  .mv__kv img {
    margin-bottom: -40%;
  }
  .mv__point-list {
    display: none;
  }
  .mv__point-list--sp {
    display: flex;
  }
  .mv__content {
    align-items: center;
    padding-bottom: 0px;
  }
  .mv__content__title {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    word-break: keep-all;
  }
  .mv__content__title img {
    width: 108px;
  }
  .mv__content__desc {
    max-width: 404px;
  }
  .mv__break {
    display: none;
  }
  .about__desc {
    font-size: 1.4rem;
  }
  .case-list {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .case {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px 10px;
    gap: 16px;
  }
  .case__image {
    width: 144px;
  }
  .case__text {
    line-height: 150%;
    font-size: 1.2rem;
    align-self: center;
  }
  .reword-system__image {
    padding: 16px 12px 24px;
  }
  .reword-system__desc {
    padding: 0 12px 24px;
  }
  .reword-system__text {
    padding-top: 24px;
    font-size: 1.4rem;
  }
  .reword-system__text span {
    font-size: 1.4rem;
  }
  .note {
    font-size: 1.1rem;
  }
  .cv__inner {
    padding: 40px 20px 16px;
  }
  .cv__content h2 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 150%;
  }
  .cv__content h2 span {
    margin-left: 24px;
  }
  .cv__content p {
    margin-bottom: 8px;
  }
  .cv__image {
    width: 70%;
    max-width: 400px;
    min-width: 240px;
  }
  .cv__bg {
    width: 80%;
    height: auto;
    bottom: -5%;
    right: -8%;
  }
  .break-sp {
    display: block;
  }
  .point-list {
    gap: 40px;
  }
  .point__content {
    padding: 24px;
  }
  .point__desc {
    font-size: 1.4rem;
    padding: 0;
  }
  .step-list {
    gap: 24px;
    margin-bottom: 40px;
  }
  .step__content {
    padding: 12px 20px;
  }
  .step__content img {
    width: 32px;
  }
  .step__title {
    font-size: 1.6rem;
  }
  .step__title span {
    font-size: 2rem;
  }
  .step--last {
    height: 80px;
  }
  .step:not(:last-child)::after {
    transform: translate(-12px, 18px);
  }
  .flow__cta {
    width: 100%;
    gap: 12px;
  }
  .flow__cta .button-cta, .flow__cta .button-cta--fv, .flow__cta .button-cta--sp {
    width: 100%;
  }
  .flow__cta__text {
    font-size: 1.6rem;
    padding-left: 8px;
  }
  .contact {
    padding: 40px 24px;
  }
  .contact__content {
    width: 100%;
    max-width: 560px;
    padding: 24px;
    gap: 12px;
  }
  .contact__content h4 {
    font-size: 1.6rem;
  }
  .contact__number {
    font-size: 2.4rem;
  }
  .contact__image {
    width: 24px;
  }
  .contact__time {
    font-size: 1.2rem;
  }
  .footer-inner {
    align-items: start;
  }
  .footer__menu {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>