@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

.d-none {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .d-none-md {
    display: none !important;
  }
}

@media only screen and (min-width: 980px) {
  .d-none-lg {
    display: none !important;
  }
}

@media only screen and (min-width: 980px) {
  .d-inline-lg {
    display: inline !important;
  }
}

.section-title {
  text-align: center;
  line-height: 1.5;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media only screen and (min-width: 768px) {
  .section-title {
    font-size: 30px;
    letter-spacing: 1.2px;
  }
}
@media only screen and (min-width: 980px) {
  .section-title {
    font-size: 36px;
  }
}
.section-title__text--gradient {
  background: linear-gradient(71deg, #117ACF 44.18%, #66CAC7 86.99%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-size: 22px;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 768px) {
  .section-title__text--gradient {
    font-size: 30px;
    letter-spacing: 1.2px;
  }
}
@media only screen and (min-width: 980px) {
  .section-title__text--gradient {
    font-size: 36px;
  }
}

.section-desc {
  font-size: 16px;
  width: fit-content;
  margin: 32px auto 0;
}
@media only screen and (min-width: 768px) {
  .section-desc {
    text-align: center;
  }
}

.main {
  position: relative;
}

.header {
  padding: 20px 16px;
  position: absolute;
  z-index: 100;
  width: 100%;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 768px) {
  .header {
    position: fixed;
  }
}
.header.has-bg {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header__logo {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 768px) {
  .header__logo {
    font-size: 32px;
  }
}
.has-bg .header__logo {
  color: #333333;
}

.header__btnWrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 300px;
  max-width: calc(100vw - 40px);
}
@media only screen and (min-width: 768px) {
  .header__btnWrapper {
    position: static;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    max-width: none;
  }
}
.header__btnWrapper.is-hidden {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header__btnWrapper.is-hidden {
    display: block;
  }
}
.header__btn {
  display: block;
  background: linear-gradient(30.38deg, #eb8568 0.7%, #ffc579 98.9%);
  border-radius: 32px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(27, 82, 98, 0.25);
  transition: all 0.2s ease;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1;
  color: #ffffff;
}
.header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 12px rgba(27, 82, 98, 0.35);
  background: linear-gradient(30.38deg, #f05a29 0.7%, #f2b66a 98.9%);
}

.fv {
  padding: 80px 16px;
  background-image: linear-gradient(107deg, rgba(123, 197, 208, 0.6), #0D78BB 23.2%, rgba(82, 209, 205, 0.6) 87.72%), url(../img/bg_fv-sp.jpg);
  background-position: right bottom, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
@media only screen and (min-width: 768px) {
  .fv {
    padding: 120px 16px;
    background-image: linear-gradient(107deg, rgba(123, 197, 208, 0.6), #0D78BB 23.2%, rgba(82, 209, 205, 0.6) 87.72%), url(../img/bg_fv-desktop.jpg);
    background-position: right bottom, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto 100%;
  }
}
.fv__content {
  max-width: 1020px;
  margin: 0 auto;
}
@media only screen and (min-width: 980px) {
  .fv__content {
    padding-left: 20px;
  }
}
.fv__points {
  display: flex;
  gap: 16px;
  margin: 40px auto 0;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  .fv__points {
    width: auto;
    margin: 40px 0 0;
  }
}
.fv img {
  width: 160px;
}
@media only screen and (min-width: 768px) {
  .fv img {
    width: 310px;
  }
}

.fvTitle {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  margin: 0 auto;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  .fvTitle {
    font-size: 36px;
    letter-spacing: 2.8px;
  }
}
@media only screen and (min-width: 980px) {
  .fvTitle {
    width: auto;
  }
}
.fvTitle__line {
  display: block;
}
.fvTitle__line2 {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
@media only screen and (min-width: 768px) {
  .fvTitle__line2 {
    margin-top: 16px;
    font-size: 44px;
  }
}
@media only screen and (min-width: 980px) {
  .fvTitle__line2 {
    font-size: 52px;
  }
}
.fvTitle__big {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media only screen and (min-width: 768px) {
  .fvTitle__big {
    font-size: 64px;
  }
}
.fvTitle__highlight {
  display: flex;
  margin: 0 4px;
  padding: 12px 8px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
}
@media only screen and (min-width: 768px) {
  .fvTitle__highlight {
    padding: 12px 10px;
  }
}
.fvTitle__highlightText {
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 40px */
  letter-spacing: 1.6px;
  background: linear-gradient(94deg, #40B9CB 0.45%, #0D78BB 38.52%, #33A9C7 97.01%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 768px) {
  .fvTitle__highlightText {
    font-size: 64px;
  }
}

.problem {
  background: linear-gradient(180deg, #FFF 0%, #E5E5E5 100%);
  background-repeat: no-repeat;
  padding: 64px 16px;
}
@media only screen and (min-width: 768px) {
  .problem {
    padding: 120px 16px;
  }
}
.problem__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.problem__balloons {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 24px auto 0;
}
@media only screen and (min-width: 768px) {
  .problem__balloons {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 64px;
  }
}
.problem__balloon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(27, 82, 98, 0.15);
  position: relative;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .problem__balloon {
    flex: 1;
    margin: 0;
  }
}
.problem__balloon::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: #ffffff;
  border-radius: 50%;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
}
.problem__balloon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 20px;
}
.problem__balloon:nth-child(2) {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .problem__balloon:nth-child(2) {
    margin: 0;
  }
}
.problem__balloonTitle {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  color: #0D78BB;
}
@media only screen and (min-width: 768px) {
  .problem__balloonTitle {
    font-size: 20px;
  }
}
.problem__arrow {
  text-align: center;
  margin: 48px auto 12px;
}
@media only screen and (min-width: 768px) {
  .problem__arrow {
    margin: 48px auto 64px;
  }
}
.problem__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .problem__copy {
    font-size: 20px;
  }
}
.problem__copy strong {
  display: block;
  width: fit-content;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient, linear-gradient(94deg, #7BC5D0 0.45%, #0D78BB 23.2%, #52D1CD 87.72%));
}
@media only screen and (min-width: 768px) {
  .problem__copy strong {
    font-size: 36px;
  }
}

.solution {
  background: linear-gradient(to bottom, #ffffff 0%, #e7ffff 100%);
  padding: 64px 16px;
}
@media only screen and (min-width: 768px) {
  .solution {
    padding: 120px 16px;
  }
}
.solution__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.solution__content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media only screen and (min-width: 768px) {
  .solution__content {
    margin-top: 64px;
  }
}
@media only screen and (min-width: 980px) {
  .solution__content {
    flex-direction: row;
    justify-content: center;
  }
}

.solutionItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.solutionItem__icon {
  width: 125px;
}
.solutionItem__title {
  margin-bottom: 12px;
  color: #0D78BB;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.solutionItem__text {
  width: fit-content;
  margin: 0 auto;
}

.strengths {
  background-color: #ffffff;
  padding: 64px 0;
}
@media only screen and (min-width: 768px) {
  .strengths {
    padding: 120px 0;
  }
}
.strengths__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 24px 0 64px;
}
@media only screen and (min-width: 768px) {
  .strengths__list {
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 0;
  }
}

.strengthCard {
  display: grid;
  grid-template-rows: auto 65px auto;
  grid-template-columns: 20px 20px 1fr 20px;
}
@media only screen and (min-width: 768px) {
  .strengthCard {
    grid-template-rows: 135px auto 52px;
    grid-template-columns: 1fr 9.0551% 39.3701% 19.685% 19.685% 9.0551% 0%;
  }
}
@media only screen and (min-width: 1280px) {
  .strengthCard {
    grid-template-columns: 1fr 115px 500px 250px 250px 115px 1fr;
  }
}
.strengthCard--reverse {
  grid-template-columns: 20px 1fr 20px 20px;
}
@media only screen and (min-width: 768px) {
  .strengthCard--reverse {
    grid-template-columns: 0% 9.0551% 19.685% 19.685% 39.3701% 9.0551% 1fr;
  }
}
@media only screen and (min-width: 1280px) {
  .strengthCard--reverse {
    grid-template-columns: 1fr 115px 250px 250px 500px 115px 1fr;
  }
}
.strengthCard__content {
  grid-row: 1/3;
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px 16px 97px;
}
@media only screen and (min-width: 768px) {
  .strengthCard__content {
    grid-row: 1/3;
    grid-column: 3;
    gap: 40px;
    align-items: flex-start;
    padding-right: 30px;
  }
}
.strengthCard--reverse .strengthCard__content {
  grid-column: 2/4;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .strengthCard--reverse .strengthCard__content {
    padding-left: 30px;
    grid-column: 5;
  }
}

.strengthCard__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.strengthCard__number {
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -0.6px;
  background: linear-gradient(67.98deg, #117acf 44.18%, #66cac7 86.99%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media only screen and (min-width: 1280px) {
  .strengthCard__number {
    font-size: 80px;
  }
}
.strengthCard__title {
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.5;
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  .strengthCard__title {
    font-size: 20px;
    letter-spacing: 0.56px;
  }
}
@media only screen and (min-width: 1280px) {
  .strengthCard__title {
    font-size: 24px;
  }
}
.strengthCard__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}
.strengthCard__visual {
  grid-row: 2/4;
  grid-column: 3/5;
}
@media only screen and (min-width: 768px) {
  .strengthCard__visual {
    padding-left: 0;
    grid-row: 2/4;
    grid-column: 4/7;
  }
}
@media only screen and (min-width: 1280px) {
  .strengthCard__visual {
    width: 615px;
  }
}
.strengthCard--reverse .strengthCard__visual {
  grid-column: 1/3;
}
@media only screen and (min-width: 768px) {
  .strengthCard--reverse .strengthCard__visual {
    grid-column: 2/5;
  }
}

.strengthCard__bg {
  background: linear-gradient(90deg, #EBFAFF 0%, #F8FFF2 100%);
  grid-column: 1/4;
  grid-row: 1/3;
}
@media only screen and (min-width: 768px) {
  .strengthCard__bg {
    grid-column: 1/5;
    grid-row: 1/3;
  }
}
.strengthCard--reverse .strengthCard__bg {
  grid-column: 2/5;
}
@media only screen and (min-width: 768px) {
  .strengthCard--reverse .strengthCard__bg {
    grid-column: 4/8;
  }
}

.difference {
  padding: 64px 16px;
  background: linear-gradient(180deg, #D1E9F8 0%, #FFF 100%);
}
@media only screen and (min-width: 768px) {
  .difference {
    padding: 120px 16px;
  }
}
.difference__table {
  margin: 64px auto 0;
  border-collapse: collapse;
}
.difference__table thead th {
  padding: 16px 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #7BC5D0;
  background: linear-gradient(92deg, #F3F3F3 0.64%, #E7E7E7 97.59%);
}
@media only screen and (min-width: 768px) {
  .difference__table thead th {
    font-size: 20px;
    padding: 16px;
  }
}
.difference__table thead th.is-wantmore {
  background: linear-gradient(93deg, #7BC5D0 1.87%, #0D78BB 32.42%, #52D1CD 97.68%);
  color: #fff;
}
.difference__table thead th:empty {
  border: none;
  background-color: transparent;
  background-image: none;
}
.difference__table tbody th {
  border: 1px solid #7BC5D0;
  padding: 12px 4px;
  font-size: 12px;
  text-align: left;
  font-weight: 700;
  background: #EAF7F9;
  min-width: 2em;
}
.difference__table tbody th span {
  -ms-writing-mode: tb-rl;
  white-space: pre;
  writing-mode: vertical-rl;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .difference__table tbody th span {
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
}
@media only screen and (min-width: 768px) {
  .difference__table tbody th {
    width: 160px;
    font-size: 16px;
    padding: 16px;
  }
}
.difference__table tbody td {
  border: 1px solid #7BC5D0;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  width: 300px;
}
@media only screen and (min-width: 768px) {
  .difference__table tbody td {
    font-size: 14px;
    padding: 16px;
  }
}
.difference__table tbody td.is-wantmore {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .difference__table tbody td.is-wantmore {
    font-size: 16px;
  }
}
.difference__table tbody td div {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: center;
}

.pricing {
  background: linear-gradient(180deg, #FFF 0%, #E5FFE4 100%);
  padding: 64px 16px;
}
@media only screen and (min-width: 768px) {
  .pricing {
    padding: 120px 16px;
  }
}
.pricing__inner {
  max-width: 980px;
  margin: 0 auto;
}
.pricing__plans {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
}
@media only screen and (min-width: 768px) {
  .pricing__plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 0 20px;
    margin-top: 64px;
  }
}
.pricing__initial {
  margin-top: 40px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #FFF;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}
.pricing__attention {
  margin-top: 24px;
  font-size: 14px;
}

.pricingCard {
  background-color: #ffffff;
  border-radius: 16px;
  border: 2px solid #7BC5D0;
  background: #FFF;
  box-shadow: 0 0 25px rgba(27, 82, 98, 0.2);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .pricingCard {
    grid-row: 1/-1;
    display: grid;
    grid-template-rows: subgrid;
  }
}
.pricingCard__header {
  background: linear-gradient(30.82deg, #117acf 13.01%, #66cac7 86.99%);
  padding: 16px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .pricingCard__header {
    padding: 16px;
  }
}
.pricingCard__title {
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .pricingCard__title {
    font-size: 26px;
  }
}
.pricingCard__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin: 24px 0;
}
@media only screen and (min-width: 768px) {
  .pricingCard__price {
    margin: 24px 0;
  }
}
.pricingCard__priceAmount {
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 80px;
  letter-spacing: -3.2px;
  background: linear-gradient(to right, #3780bf, #2e9bc1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .pricingCard__priceAmount {
    font-size: 80px;
    letter-spacing: -4px;
  }
}
.pricingCard__priceUnit {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.96px;
  background: linear-gradient(to right, #3780bf, #2e9bc1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .pricingCard__priceUnit {
    font-size: 28px;
    letter-spacing: 1.12px;
  }
}
.pricingCard__features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 16px 20px 32px 20px;
  border-top: 1px solid #E6E6E6;
}
@media only screen and (min-width: 768px) {
  .pricingCard__features {
    gap: 4px;
  }
}
.pricingCard__feature {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 24px 24px;
}
@media only screen and (min-width: 768px) {
  .pricingCard__feature {
    padding-left: 28px;
    gap: 4px;
  }
}

.member {
  padding: 64px 16px;
}
@media only screen and (min-width: 768px) {
  .member {
    padding: 120px 16px;
  }
}
.member__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.member__content {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}
@media only screen and (min-width: 768px) {
  .member__content {
    margin-top: 64px;
    flex-direction: row;
  }
}

.memberItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.memberItem__photo {
  width: 200px;
}
.memberItem__body {
  font-size: 14px;
}
.memberItem__name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  text-align: center;
}

.cta {
  padding: 64px 16px;
  background: var(--Linear, linear-gradient(90deg, #EBFAFF 0%, #F8FFF2 100%));
}
@media only screen and (min-width: 768px) {
  .cta {
    padding: 120px 16px;
  }
}
.cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  height: 300px;
  background: url(../img/bg_cta.png) center/cover no-repeat;
  border-radius: 24px;
  padding: 64px 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cta__content {
    height: 340px;
  }
}
.cta__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .cta__title br {
    display: none;
  }
}
.cta__btn {
  display: block;
  background: linear-gradient(30.38deg, #eb8568 0.7%, #ffc579 98.9%);
  border-radius: 31px;
  padding: 19px 20px;
  box-shadow: 2px 2px 8px rgba(27, 82, 98, 0.25);
  transition: all 0.2s ease;
  width: 300px;
  max-width: 100%;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.96px;
  color: #ffffff;
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 12px rgba(27, 82, 98, 0.35);
  background: linear-gradient(30.38deg, #f05a29 0.7%, #f2b66a 98.9%);
}

.footer {
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  padding: 16px 20px;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 20px 40px;
  }
}
.footer__copyright {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
}
@media only screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
