body {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: var(--333333, #333);
  font-size: 16px;
  line-height: 170%;
}

.title {
  color: var(--333333, #333);
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  display: inline-block;
  position: relative;
}
.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--3-ea-1-d-1, #3ea1d1);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -28px;
}
@media screen and (min-width:768px) {
  .title {
    font-size: 40px;
    bottom: -22px;
  }
}

.lead1 {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 170%;
}

.lead2 {
  text-align: left;
  font-weight: 300;
}

.button {
  background: #fff;
  text-align: center;
  display: inline-block;
  min-width: 158px;
  padding: 11px 3px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  text-decoration: none;
  border: 1px solid var(--3-ea-1-d-1, #3ea1d1);
  color: var(--3-ea-1-d-1, #3ea1d1);
  font-size: 14px;
  line-height: 23.8px;
  letter-spacing: 0.02px;
  -webkit-transition: background-color 0.3s color 0.3s;
  transition: background-color 0.3s color 0.3s;
}
.button:hover {
  color: #fefefe;
  background-color: var(--3-ea-1-d-1, #3ea1d1);
}

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

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 15px;
}
@media screen and (min-width:768px) {
  .header__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 23px;
    padding-bottom: 21px;
  }
}

.header__logo a img {
  display: block;
  width: 120px;
  height: 22px;
}

.header__nav {
  display: none;
}
@media screen and (min-width:768px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 47px;
  }
}

.header__link {
  color: var(--333333, #333);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .header__link {
    font-size: 16px;
    line-height: 27.2px;
  }
}
.header__link:hover {
  opacity: 0.7;
}

.header__open {
  margin-top: 2px;
}

.drawer__icon {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width:768px) {
  .drawer__icon {
    display: none;
  }
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(-44.904deg);
          transform: rotate(-44.904deg);
  top: 10px;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(44.904deg);
          transform: rotate(44.904deg);
  top: 10px;
}

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

.drawer-content {
  width: 270px;
  height: 100%;
  position: fixed;
  top: 60px;
  right: 0;
  background: var(--3-ea-1-d-1, #3ea1d1);
  z-index: 50;
  padding-top: 40px;
  padding-right: 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -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;
  gap: 32px;
  text-align: right;
}

.drawer-header__link {
  color: var(--ffffff, #fff);
  font-size: 18px;
  font-weight: 300;
}

.mv__inner {
  position: relative;
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .mv__inner {
    max-width: 1280px;
    padding-right: 40px;
    margin-inline: auto;
  }
}

@media screen and (min-width:768px) {
  .mv-picture {
    max-width: 990px;
    margin-left: auto;
    display: block;
  }
}

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

.mv__lead1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 44.2px;
  color: var(--333333, #333);
}

.mv__lead2 {
  margin-top: 16px;
  font-weight: 300;
  line-height: 27.2px;
}

.concept {
  margin-top: 135px;
  margin-bottom: 93px;
}

.concept__inner {
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .concept__inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.concept__content {
  text-align: center;
}

.concept__main {
  margin-top: 70px;
}
@media screen and (min-width:768px) {
  .concept__main {
    margin-top: 108px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
}

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

@media screen and (min-width:768px) {
  .concept__lead {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept__lead1 {
  margin-top: 34px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
@media screen and (min-width:768px) {
  .concept__lead1 {
    margin-top: 0;
    font-size: 18px;
  }
}
@media screen and (min-width:1200px) {
  .concept__lead1 {
    font-size: 20px;
  }
}

.concept__lead2 {
  margin-top: 21px;
  text-align: left;
  font-weight: 300;
  line-height: 27.2px;
}
@media screen and (min-width:768px) {
  .concept__lead2 {
    margin-top: 40px;
  }
}

@media screen and (min-width:768px) {
  .feature {
    margin-top: 137px;
    margin-bottom: 160px;
  }
}

.feature__inner {
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .feature__inner {
    max-width: calc(100% - 80px);
    margin-inline: auto;
  }
}

.feature__content {
  text-align: center;
}

.feature__cards {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width:768px) {
  .feature__cards {
    margin-top: 108px;
    -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__text {
  font-family: "Noto Serif JP", serif;
  margin-top: 25px;
  margin-bottom: 27px;
  font-weight: 600;
}

.question {
  margin-top: 94px;
  margin-bottom: 96px;
  background: url(../img/bg-sp.png) no-repeat top center/cover;
  position: relative;
}
@media screen and (min-width:768px) {
  .question {
    background-image: url(../img/bg-md.png);
  }
}
.question::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.question__inner {
  padding-top: 180px;
  padding-bottom: 50px;
}
@media screen and (min-width:768px) {
  .question__inner {
    padding-top: 121px;
    padding-bottom: 122px;
  }
}

.question__content {
  position: relative;
  z-index: 2;
}

.question__lead {
  padding-left: 15px;
  padding-right: 15px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .question__lead {
    padding-left: 40px;
  }
}

.question__lead1 {
  color: var(--ffffff, #fff);
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
@media screen and (min-width:768px) {
  .question__lead1 {
    font-size: 22px;
    line-height: 37.4px;
  }
}

.question__lead2 {
  margin-top: 26px;
  color: var(--ffffff, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 23.8px;
}
@media screen and (min-width:768px) {
  .question__lead2 {
    margin-top: 23px;
    font-size: 16px;
    line-height: 27.2px;
  }
}

.product {
  margin-top: 96px;
  margin-bottom: 96px;
}
@media screen and (min-width:768px) {
  .product {
    margin-top: 138px;
    margin-bottom: 136px;
  }
}

.product__inner {
  max-width: calc(100% - 112px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .product__inner {
    max-width: calc(100% - 112px);
    margin-inline: auto;
  }
}
@media screen and (min-width:900px) {
  .product__inner {
    max-width: calc(100% - 200px);
    margin-inline: auto;
  }
}
@media screen and (min-width:1200px) {
  .product__inner {
    max-width: calc(100% - 340px);
    margin-inline: auto;
  }
}

.product__content {
  text-align: center;
}

.product__cards {
  margin-top: 68px;
  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;
}
@media screen and (min-width:768px) {
  .product__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    margin-top: 106px;
  }
}
@media screen and (min-width:1200px) {
  .product__cards {
    gap: 80px;
  }
}

.product__text {
  margin-top: 21px;
  text-align: left;
}
@media screen and (min-width:768px) {
  .product__text {
    margin-top: 22px;
  }
}

.product__text1 {
  color: var(--333333, #333);
  font-size: 14px;
  line-height: 23.8px;
}

.product__text2 {
  margin-top: 10px;
  color: #989898;
  font-size: 14px;
  line-height: 23.8px;
}

.product__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .product__button {
    margin-top: 36px;
  }
}
.news {
  margin-top: 96px;
  margin-bottom: 96px;
}
@media screen and (min-width:768px) {
  .news {
    margin-top: 0;
    margin-bottom: 160px;
  }
}

.news__inner {
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .news__inner {
    max-width: calc(100% - 200px);
    margin-inline: auto;
  }
}
@media screen and (min-width:900px) {
  .news__inner {
    max-width: calc(100% - 160px);
    margin-inline: auto;
  }
}
@media screen and (min-width:1200px) {
  .news__inner {
    max-width: calc(100% - 240px);
    margin-inline: auto;
  }
}

.news__content {
  text-align: center;
}

.news__cards {
  margin-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}
@media screen and (min-width:768px) {
  .news__cards {
    margin-top: 107px;
  }
}

.news__card {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 28px;
}
@media screen and (min-width:768px) {
  .news__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width:1200px) {
  .news__card {
    gap: 40px;
  }
}

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

.news__text {
  text-align: left;
  margin-top: 15px;
}
@media screen and (min-width:768px) {
  .news__text {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.news__date {
  color: var(--333333, #333);
  font-size: 14px;
  line-height: 23.8px;
}

.news__text1 {
  margin-top: 9px;
  color: var(--333333, #333);
  font-size: 16px;
  font-weight: 600;
  line-height: 27.2px;
}
@media screen and (min-width:768px) {
  .news__text1 {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (min-width:1200px) {
  .news__text1 {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news__text2 {
  margin-top: 15px;
  color: #888;
  font-size: 14px;
  line-height: 23.8px;
}
@media screen and (min-width:768px) {
  .news__text2 {
    margin-top: 8px;
    font-size: 13px;
  }
}
@media screen and (min-width:1200px) {
  .news__text2 {
    margin-top: 12px;
    font-size: 14px;
  }
}

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

.aikotoba {
  margin-top: 96px;
  margin-bottom: 96px;
}
@media screen and (min-width:768px) {
  .aikotoba {
    margin-top: 160px;
    margin-bottom: 160px;
  }
}

.aikotoba__inner {
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .aikotoba__inner {
    max-width: calc(100% - 80px);
    margin-inline: auto;
  }
}

@media screen and (min-width:768px) {
  .aikotoba__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}
@media screen and (min-width:900px) {
  .aikotoba__content {
    gap: 40px;
  }
}
@media screen and (min-width:1200px) {
  .aikotoba__content {
    gap: 81px;
  }
}

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

.aikotoba__text1 {
  color: var(--333333, #333);
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
@media screen and (min-width:768px) {
  .aikotoba__text1 {
    font-size: 24px;
    line-height: 47.6px;
    margin-top: 6px;
  }
}
@media screen and (min-width:900px) {
  .aikotoba__text1 {
    font-size: 26px;
  }
}
@media screen and (min-width:1200px) {
  .aikotoba__text1 {
    font-size: 28px;
  }
}

.aikotoba__text2 {
  margin-top: 21px;
  color: var(--333333, #333);
  font-size: 14px;
  font-weight: 300;
  line-height: 23.8px;
  letter-spacing: 0.08px;
}
@media screen and (min-width:768px) {
  .aikotoba__text2 {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 300;
    line-height: 27.2px;
  }
}
@media screen and (min-width:900px) {
  .aikotoba__text2 {
    margin-top: 36px;
    font-size: 15px;
  }
}

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

.contact {
  padding-top: 56px;
  padding-bottom: 56px;
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .contact {
    padding-top: 59px;
    padding-bottom: 80px;
    background: url(../img/contact-bg-md.png) no-repeat center center/cover;
  }
}

.contact__inner {
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__title {
  text-align: center;
}

.contact-title {
  color: var(--3-ea-1-d-1, #3ea1d1);
}

.contant__text {
  color: var(--333333, #333);
  font-size: 14px;
  font-weight: 600;
  line-height: 23.8px;
  margin-top: 70px;
}
.contant__text span {
  color: #e7728e;
}
@media screen and (min-width:768px) {
  .contant__text {
    margin-top: 107px;
  }
}

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

.form-field__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--ffffff, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 23.8px;
  opacity: 0.7;
  background: var(--3-ea-1-d-1, #3ea1d1);
  padding: 4px 15px;
  position: relative;
}
.form-field__label span {
  color: #e7728e;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
  padding-left: 4px;
}
@media screen and (min-width:768px) {
  .form-field__label span {
    font-size: 12px;
  }
}
@media screen and (min-width:768px) {
  .form-field__label {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 10px;
    padding-right: 4px;
    padding-left: 4px;
    -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__item {
  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__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width:768px) {
  .form-field__item-form-checkbox {
    display: inline-block;
    text-align: center;
    margin-top: 32px;
  }
}

.form-text {
  background: var(--ffffff, #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);
  vertical-align: top;
  width: 100%;
  height: 40px;
  border: 0;
}
@media screen and (min-width:768px) {
  .form-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.choice__btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.toggle-btn {
  display: inline-block;
  color: var(--3-ea-1-d-1, #3ea1d1);
  text-align: center;
  font-size: 16px;
  line-height: 27.2px;
  letter-spacing: 0.026px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 80px;
  height: 40px;
  border: 1px solid #fff;
  background: var(--ffffff, #fff);
}
.toggle-btn.is-active {
  color: var(--ffffff, #fff);
  text-align: center;
  font-size: 16px;
  line-height: 27.2px;
  border: 1px solid #fff;
  background: var(--3-ea-1-d-1, #3ea1d1);
}

.form-textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  width: 100%;
  height: 122px;
  fill: var(--ffffff, #fff);
  -webkit-filter: drop-shadow(5px 6px 16px rgba(96, 96, 96, 0.16));
          filter: drop-shadow(5px 6px 16px rgba(96, 96, 96, 0.16));
  border: 0;
  resize: vertical;
}

.form-checkbox {
  text-align: center;
}

.form-field__item-form-checkbox {
  text-align: center;
  margin-top: 2px;
  margin-left: -13px;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  margin-top: 28px;
}
@media screen and (min-width:768px) {
  .form-checkbox__input {
    margin-top: 32px;
  }
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  color: var(--333333, #333);
}
.form-checkbox__text a {
  color: var(--3-ea-1-d-1, #3ea1d1);
  font-size: 16px;
  line-height: 27.2px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}

.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid var(--3-ea-1-d-1, #3ea1d1);
}

.form-checkbox__text::after {
  width: 22px;
  height: 22px;
  background: url(../img/checkbox.png) no-repeat center center/contain;
  opacity: 0;
}

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

.footer {
  margin-top: 35px;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .footer {
    margin-bottom: 14px;
  }
}

.footer__inner {
  max-width: calc(100% - 105px);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .footer__inner {
    margin-inline: auto;
  }
}

.footer__content {
  text-align: center;
}

.footer__logo img {
  width: 120px;
}

@media screen and (min-width:768px) {
  .footer__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    margin-top: 22px;
  }
}

.footer__privacy {
  margin-top: 22px;
  color: var(--333333, #333);
  font-size: 12px;
  line-height: 20.4px;
}
@media screen and (min-width:768px) {
  .footer__privacy {
    margin-top: 0;
  }
}

.footer__law {
  margin-top: 12px;
  color: var(--333333, #333);
  font-size: 12px;
  line-height: 20.4px;
}
@media screen and (min-width:768px) {
  .footer__law {
    margin-top: 0;
  }
}

.footer__icon {
  margin-top: 16px;
}
@media screen and (min-width:768px) {
  .footer__icon {
    margin-top: 18px;
  }
}

.footer__icon-twitter {
  margin-right: 40px;
}

.button-twitter {
  width: 21px;
  height: 17.056px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:768px) {
  .button-twitter {
    width: 21px;
    height: 21px;
  }
}

.footer__icon-instagram {
  margin-right: 35px;
}

.button-instagram {
  width: 18.01px;
  height: 19.431px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:768px) {
  .button-instagram {
    width: 18px;
    height: 22.2px;
  }
}

.button-line {
  width: 18px;
  height: 19.2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__copyright {
  display: inline-block;
  text-align: center;
  margin-top: 16px;
  color: #888;
  font-size: 12px;
  font-weight: 300;
  line-height: 20.4px;
}
@media screen and (min-width:768px) {
  .footer__copyright {
    margin-top: 21px;
  }
}