@charset "UTF-8";
.mv {
  position: relative;
  height: calc(100svh - 60px);
  min-height: 762px;
  max-height: 800px;
  margin-top: 60px;
  background-color: #c9c9c9;
  background-image: url(assets/images/fv/sp-fv.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 60px;
}
@media screen and (min-width: 768px) {
  .mv {
    min-height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .mv {
    display: block;
    padding: 0;
    background-image: url(assets/images/fv/pc-fv.jpg);
  }
}
.mv__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  background-color: #003366;
}
@media screen and (min-width: 1024px) {
  .mv__content {
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    left: 10%;
    gap: 40px;
    padding: 40px;
  }
}
.mv__content__catchcopy {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .mv__content__catchcopy {
    font-size: 1.5rem;
  }
}
.mv__content__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  padding: 10px 0;
  background-color: #ffffff;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .mv__content__title {
    gap: 10px;
    padding: 40px 0;
  }
}
.mv__content__title__main img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mv__content__message {
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}

.issue {
  background-color: #f0f9ff;
}
.issue__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .issue__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.issue__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .issue__item {
    flex-direction: row;
    justify-content: space-between;
  }
}
.issue__item__label {
  color: #66b2ff;
  font-weight: 700;
}
.issue__item__label--sp {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 4rem;
}
@media screen and (min-width: 1024px) {
  .issue__item__label--sp {
    display: none;
  }
}
.issue__item__label--pc {
  display: none;
  font-size: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .issue__item__label--pc {
    display: block;
  }
}
.issue__item__image {
  position: relative;
  width: 80%;
  max-width: 300px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .issue__item__image {
    width: 40%;
  }
}
.issue__item__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .issue__item__image img {
    aspect-ratio: 1/1;
  }
}
.issue__item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .issue__item__content {
    justify-content: center;
    width: 60%;
    max-width: inherit;
  }
}
.issue__item__description {
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .issue__item__description {
    text-align: left;
  }
}

.solutions {
  position: relative;
  background-image: url("assets/images/solutions/sp-solutions-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .solutions {
    background-image: url("assets/images/solutions/pc-solutions-bg.jpg");
  }
}
.solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.solutions__heading, .solutions__content {
  position: relative;
  z-index: 10;
}
.solutions__heading__description, .solutions__content__description {
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .solutions__heading__description, .solutions__content__description {
    font-size: 1.5rem;
  }
}

.menu {
  background-color: #f0f9ff;
}
@media screen and (min-width: 1024px) {
  .menu__content {
    width: 95% !important;
    max-width: 1280px !important;
  }
}
.menu__content__description {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .menu__content__description {
    font-size: 1.5rem;
  }
}
.menu__content__arrow {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(90deg);
}
@media screen and (min-width: 1024px) {
  .menu__content__arrow {
    transform: rotate(0deg);
  }
}
.menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .menu__list {
    flex-direction: row;
    align-items: inherit;
    gap: 20px;
  }
}
.menu__item {
  width: 100%;
  max-width: 400px;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .menu__item {
    width: calc(100% - 180px);
  }
}
.menu__item__title {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #003366;
  margin-bottom: 20px;
}
.menu__item__label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #66b2ff;
  margin-bottom: 10px;
}
.menu__item__issue {
  margin-bottom: 20px;
}
.menu__item__list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.menu__item__description {
  font-size: 14px;
}

.hybrid {
  position: relative;
  background-image: url("assets/images/hybrid/sp-hybrid-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .hybrid {
    background-image: url("assets/images/hybrid/pc-hybrid-bg.jpg");
  }
}
.hybrid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.hybrid__heading, .hybrid__content {
  position: relative;
  z-index: 10;
}
.hybrid__heading__description, .hybrid__content__description {
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hybrid__heading__description, .hybrid__content__description {
    font-size: 1.5rem;
  }
}

.achievement {
  position: relative;
  background-image: url("assets/images/achievement/sp-achievement-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .achievement {
    background-image: url("assets/images/achievement/pc-achievement-bg.jpg");
  }
}
.achievement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.achievement__heading, .achievement__content {
  position: relative;
  z-index: 10;
}
.achievement__heading__description, .achievement__content__description {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .achievement__content {
    width: 95% !important;
    max-width: 1280px !important;
  }
}
@media screen and (min-width: 1024px) {
  .achievement__content {
    width: 90% !important;
    max-width: 1024px !important;
  }
}
.achievement__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .achievement__list {
    flex-direction: row;
    align-items: inherit;
  }
}
.achievement__item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  width: 100%;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .achievement__item {
    width: calc(100% - 40px);
  }
}
.achievement__item__num {
  display: block;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
}
.achievement__item__image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.achievement__item__title {
  font-size: 1.25rem;
  font-weight: 700;
}
.achievement__item__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  padding: 5px 0;
  margin-bottom: 10px;
  font-size: 12px;
  border: 1px solid #66b2ff;
}
.achievement__item__label--before {
  background-color: #66b2ff;
  color: #ffffff;
}
.achievement__item__label--after {
  background-color: #ffffff;
  color: #080808;
}
.achievement__item__description {
  font-size: 14px;
}
.achievement__item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.achievement__item__arrow {
  display: block;
  margin: 0 auto;
  transform: rotate(90deg);
}

.flow {
  background-color: #f0f9ff;
}
@media screen and (min-width: 768px) {
  .flow__content {
    width: 95% !important;
  }
}
@media screen and (min-width: 1024px) {
  .flow__content {
    width: 80%;
  }
}
.flow__content__arrow {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .flow__content__arrow {
    transform: rotate(0deg);
  }
}
.flow__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flow__list {
    flex-direction: row;
    align-items: inherit;
    gap: 20px;
  }
}
.flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .flow__item {
    width: calc(100% - 180px);
  }
}
.flow__item__num {
  font-size: 1.5rem;
  font-weight: 500;
  color: #003366;
  text-align: center;
}
.flow__item__image {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.flow__item__title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.faq {
  background-color: #003366;
}
.faq__heading__main, .faq__heading__sub {
  color: #ffffff !important;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .faq__list {
    gap: 40px;
  }
}
.faq__item {
  padding: 20px;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .faq__item {
    padding: 20px 40px;
  }
}
.faq__item__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}
.faq__item__label--question {
  border: 1px solid #003366;
  background-color: #003366;
  color: #ffffff;
}
.faq__item__label--answer {
  border: 1px solid #003366;
  background-color: #ffffff;
  color: #003366;
}
.faq__item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c9c9c9;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .faq__item__question {
    gap: 24px;
  }
}
.faq__item__answer {
  display: flex;
  align-items: start;
  gap: 16px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .faq__item__answer {
    gap: 24px;
  }
}
.faq__item__message {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .faq__item__message {
    gap: 34px;
  }
}
.faq__item__message img {
  width: 30px;
  min-width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq__item__message p {
  font-size: 1.25rem;
  font-weight: 700;
}

.contact__content__description {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 60px;
}
.contact__content__message {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.contact__form__item input,
.contact__form__item textarea,
.contact__form__item select {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  background-color: #ffffff;
  color: #080808;
  border: 1px solid #aaa;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.contact__form__item input::-moz-placeholder, .contact__form__item textarea::-moz-placeholder, .contact__form__item select::-moz-placeholder {
  color: #aaa;
}
.contact__form__item input::placeholder,
.contact__form__item textarea::placeholder,
.contact__form__item select::placeholder {
  color: #aaa;
}
.contact__form__select {
  position: relative;
}
.contact__form__select::after {
  content: "";
  position: absolute;
  background-image: url("assets/images/icon/arrow_drop_down_24dp_AAA_FILL0_wght400_GRAD0_opsz24.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact__form .privacypolicy__title {
  margin-bottom: 20px;
}
.contact__form .privacypolicy__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form .privacypolicy__content a,
.contact__form .privacypolicy__content p {
  font-size: 0.875rem;
}
.contact__form .privacypolicy__content a {
  color: #66b2ff;
}
.contact__form .submit-btn {
  margin-top: 20px;
}
.contact__form .submit-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  height: 40px;
  margin: 0 auto;
  background-color: #003366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.4s ease;
}
.contact__form .submit-btn button:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .contact__form .submit-btn button {
    height: 48px;
  }
}

.privacy-policy {
  padding: 60px 0;
  margin-top: 60px;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .privacy-policy {
    padding: 100px 0;
  }
}
.privacy-policy__description {
  margin-bottom: 40px;
}
.privacy-policy__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.privacy-policy__item__title {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003366;
}
.privacy-policy__item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-policy__back-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  height: 40px;
  margin: 40px auto 0;
  background-color: #003366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.4s ease;
}
.privacy-policy__back-btn:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .privacy-policy__back-btn {
    height: 48px;
    margin: 60px auto 0;
  }
}

.cta-button {
  position: relative;
  justify-content: start;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 20px 40px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 9999px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #003366;
  transition: all 0.4s ease;
}
.cta-button::after {
  content: "→";
  position: absolute;
  transform: translateY(-50%);
  right: 20px;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #66b2ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: #ffffff;
}
.cta-button:hover {
  opacity: 0.8;
}
.cta-button--sp {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .cta-button--sp {
    display: none;
  }
}
.cta-button--pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .cta-button--pc {
    display: flex;
  }
}
.cta-button--global-button {
  display: flex;
  justify-content: center;
  padding: 16px 40px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
.cta-button--global-button::after {
  width: 30px;
  height: 30px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .cta-button--global-button {
    display: none;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #080808;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

h1 {
  margin: 0;
}

p {
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 1rem;
  }
}

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

span.primary-color {
  color: #66b2ff;
}

span.under {
  font-size: 1.25rem;
  color: #003366;
  background: linear-gradient(to bottom, transparent 70%, #e7cc6d 70%, #e7cc6d 100%);
}
@media screen and (min-width: 768px) {
  span.under {
    font-size: 1.75rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.header__logo {
  height: 40px;
}
.header__logo img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 0 0 0 20px;
  }
}

.hamburger {
  width: 25px;
  height: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1) {
  top: 4px;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.global-nav {
  position: fixed;
  top: 0;
  right: -120%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 300px;
  height: calc(100svh - 60px);
  padding: 0 20px;
  margin-top: 60px;
  background-color: #003366;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .global-nav {
    position: relative;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    top: auto;
    right: auto;
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
  }
}
.global-nav.active {
  right: 0;
}
.global-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .global-nav__inner {
    flex-direction: row;
    gap: 20px;
    margin: 0;
  }
}
.global-nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60px;
  margin: 0 auto;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .global-nav__item {
    width: auto;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
    background-color: transparent;
    color: #080808;
  }
}
.global-nav__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  margin: 0;
  background-color: #66b2ff;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 9999px;
}
@media screen and (min-width: 1024px) {
  .global-nav__tel {
    padding: 12px 20px;
    margin: 0 24px 0 40px;
  }
}
.global-nav__contact {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  background-color: #003366;
  color: #ffffff;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .global-nav__contact {
    display: flex;
    height: 100%;
  }
}
.global-nav__contact:hover {
  opacity: 0.8;
}

.backdrop {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: calc(100svh - 60px);
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .backdrop {
    display: none;
  }
}

.section {
  padding: 60px 0;
}
@media screen and (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}
.section__heading {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
  /* 日本語の改行ルールを厳密に適用 */
  line-break: strict;
  /* Safari（旧バージョン）向けベンダープレフィックス */
  -webkit-line-break: strict;
  /* CJKの語間は原則改行させず、英語等の長い文字列は折り返す */
  word-break: keep-all;
  /* 折り返し可能にする（長いURLや英単語の途中で改行） */
  overflow-wrap: break-word;
  /* legacy */
  word-wrap: break-word;
}
@media screen and (min-width: 1024px) {
  .section__heading {
    margin-bottom: 60px;
  }
}
.section__heading__main {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .section__heading__main {
    font-size: 2rem;
  }
}
.section__heading__sub {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #003366;
}
.section__content {
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
}

.footer {
  background-color: #003366;
}
.footer__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  font-size: 0.75rem;
  color: #ffffff;
  text-align: center;
}
.footer__copyright span {
  font-size: 1.25rem;
}/*# sourceMappingURL=style.css.map */