html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333;
  font-weight: 300px;
  line-height: 1.7;
  font-size: 16px;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.section__container {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .section__container {
    margin-top: 89px;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

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

@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

.heading {
  position: relative;
}

.heading__title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}
.heading__title.is-type2 {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 40px;
  }
}

.heading__bar {
  background: #3ea1d1;
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .heading__bar {
    bottom: -24px;
  }
}

.button {
  display: inline-block;
  min-width: 158px;
  height: 48px;
  padding: 11px;
  border: 1px solid #3ea1d1;
  background: #fff;
  font-size: 14px;
  color: #3ea1d1;
  letter-spacing: 0.02px;
  text-align: center;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #3ea1d1;
}

.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 49;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a img {
  display: block;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 46px;
  }
}

@media screen and (min-width: 768px) {
  .header__link {
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  .header__link:hover {
    color: #3ea1d1;
  }
}

.header__open {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer__icon {
  position: relative;
  width: 30px;
  height: 18px;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

.drawer__content {
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  background: #3ea1d1;
  z-index: 50;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
}
.drawer__content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer__content {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .drawer-content__menu {
    display: none;
  }
}

.drawer-content__link {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  padding-block: 8px;
}

.main {
  display: grid;
  gap: 96px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 160px;
  }
}

@media screen and (min-width: 768px) {
  .mv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__picture {
  max-width: 900px;
  margin-left: auto;
  display: block;
}
.mv__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .mv__content {
    position: absolute;
    background: #fff;
    inset-block: 0;
    margin-block: auto;
    padding: 80px 40px;
    left: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.mv__head {
  font-size: 26px;
  font-weight: 600;
}
.mv__head br {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv__head br {
    display: inline;
  }
}

.mv__text {
  margin-top: 16px;
}

.concept__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .concept__container {
    margin-top: 89px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.6666666667%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept__image img {
  width: 100%;
}

.concept__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.concept__head {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept__head {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .concept__head {
    font-size: 20px;
  }
}

.concept__text {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-top: 40px;
  }
}

.feature__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .feature__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .feature__cards {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .feature__cards {
    gap: 90px;
  }
}

.feature-card {
  background: #fff;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}

.feature-card__image {
  text-align: center;
}
.feature-card__image img {
  width: 100%;
}

.feature-card__text {
  padding: 26px;
  font-weight: 600;
  text-align: center;
}

.about {
  background: url(../img/about-sp.jpg) no-repeat top center/cover;
  position: relative;
  padding-top: 180px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .about {
    background-image: url(../img/about.jpg);
    padding-top: 123px;
    padding-bottom: 122px;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.about__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 50%;
  }
}

.about__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 22px;
  }
}

.about__text {
  margin-top: 23px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}

.products__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .products__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    padding-inline: 40px;
    max-width: 1020px;
    margin-inline: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 900px) {
  .products__cards {
    gap: 80px;
  }
}

.products__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__button {
    margin-top: 42px;
  }
}

.products-card {
  width: 70.1333333333%;
}
@media screen and (min-width: 768px) {
  .products-card:hover .products-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 768px) {
  .products-card__image {
    overflow: hidden;
  }
}
.products-card__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .products-card__image img {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.products-card__content {
  margin-top: 20px;
  font-size: 14px;
}

.products-card__price {
  margin-top: 10px;
  color: #989898;
}

@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1120px;
    padding-inline: 40px;
  }
}

@media screen and (min-width: 768px) {
  .news__cards {
    margin-inline: auto;
  }
}

.news__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 28px;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .news__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    padding-bottom: 24px;
  }
  .news__card:hover .news-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.news__card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #e0e0e0;
}
.news__card:nth-child(n+2) {
  padding-top: 28px;
}
@media screen and (min-width: 768px) {
  .news__card:nth-child(n+2) {
    padding-top: 24px;
  }
}

.news__button {
  text-align: center;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 42px;
  }
}

@media screen and (min-width: 768px) {
  .news-card__image {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
  }
}
.news-card__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-card__image img {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.news-card__contents {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news-card__contents {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.news-card__date {
  display: block;
  font-size: 14px;
}

.news-card__title {
  margin-top: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    font-size: 18px;
    margin-top: 16px;
  }
}

.news-card__text {
  color: #888;
  font-size: 14px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .news-card__text {
    margin-top: 10px;
  }
}

.concept2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .concept2__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .concept2__inner {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .concept2__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept2__image img {
  width: 100%;
}

.concept2__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.concept2__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept2__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .concept2__title {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .concept2__title {
    font-size: 28px;
  }
}

.concept2__text {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .concept2__text {
    margin-top: 36px;
    font-size: 16px;
  }
}

.contact {
  background: url(../img/contact-bg-sp.jpg) no-repeat center center/cover;
  padding-block: 56px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 80px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__alert {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.contact__alert span {
  color: #e7728e;
}
@media screen and (min-width: 768px) {
  .contact__alert span {
    font-size: 12px;
  }
}

.contact__form {
  margin-inline: auto;
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    margin-top: 19px;
  }
}

.contact__privacy {
  margin-top: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 32px;
  }
}

.contact__button {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 44px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

.form-field__label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: rgba(62, 161, 209, 0.7);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 18px;
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 40px;
    text-align: center;
    padding-inline: 4px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}
.form-field__label span {
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-field__label span {
    font-size: 12px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-text {
  height: 40px;
  width: 100%;
  border: none;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
}
@media screen and (min-width: 768px) {
  .form-text {
    width: 320px;
  }
}
.form-text:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  color: #fff;
  background-color: #3ea1d1;
}
.form-radio__input:focus + .form-radio__text {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}

.form-radio__text {
  letter-spacing: 0.026px;
  color: #3ea1d1;
  background: #fff;
  border: 1px solid #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  height: 122px;
  width: 100%;
  -webkit-box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
  border: 0;
  resize: vertical;
  font-size: 16px;
}
.form-textarea:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}
@media screen and (min-width: 768px) {
  .form-textarea {
    width: 320px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  left: 0;
  inset-block: 0;
  margin-block: 0;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #3ea1d1;
}
.form-checkbox__text::after {
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/icon.png) no-repeat center center/contain;
  opacity: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text a {
  color: #3ea1d1;
  text-decoration-line: underline;
}

.footer {
  padding-top: 40px;
  padding-bottom: 7px;
  background: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer__container {
  min-width: 144px;
}

.footer__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__logo:hover {
    opacity: 0.6;
  }
}
.footer__logo img {
  width: 120px;
  display: block;
  margin-inline: auto;
}

.footer__links {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__link {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__link:hover {
    opacity: 0.6;
  }
}

.footer__icons {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__icons {
    margin-top: 20px;
  }
}

.footer__icon img {
  display: block;
}

.footer__copyright {
  display: block;
  margin-top: 24px;
  color: #888;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}