@charset "UTF-8";
body {
  color: #333;
  font-size: 16px;
  font-family: "Oswald", serif, "Noto Sans JP", serif, "Josefin Sans", serif;
  font-weight: 300;
  line-height: 1.7;
  background-color: #fff;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s ease-out 0.2s, -webkit-transform 2s ease-out 0.2s;
  transition: opacity 1s ease-out 0.2s, -webkit-transform 2s ease-out 0.2s;
  transition: opacity 1s ease-out 0.2s, transform 2s ease-out 0.2s;
  transition: opacity 1s ease-out 0.2s, transform 2s ease-out 0.2s, -webkit-transform 2s ease-out 0.2s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-in-view {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.only-sp {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

.section {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.heading {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .heading {
    max-width: 500px;
    padding-left: unset;
    margin-inline: auto;
  }
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Mv Boli", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 30px;
  }
}

.sub-title {
  color: #fff;
  font-size: 26px;
  text-decoration-line: underline;
  text-underline-offset: 5px;
}
@media screen and (max-width: 767px) {
  .sub-title {
    font-size: 16px;
    margin-top: 5px;
  }
}

.button {
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  padding: 8px 30px 8px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  font-size: 26px;
  width: 100%;
  color: #333;
  border: 2px solid currentColor;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .button {
    padding: 6px 10px;
    font-size: 18px;
  }
}
.button:hover {
  background: yellow;
}

.inner {
  max-width: 1520px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 500px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 550px) {
  .inner {
    max-width: 375px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3ea1d1;
  opacity: 0.7;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.page-top:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 60px;
    height: 60px;
    bottom: 30px;
    bottom: 30px;
  }
}
.page-top i {
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-top i {
    font-size: 28px;
  }
}

.header {
  position: relative;
  overflow: hidden;
}

/* 光のエフェクト */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: shine 3s ease-in-out infinite;
          animation: shine 3s ease-in-out infinite;
  pointer-events: none; /* クリック干渉なし */
}
@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

.header {
  padding-block: 4px;
  background: #808080;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  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;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: unset;
    margin-inline: auto;
  }
}

.header__logo {
  font-family: "Comic Sans MS", sans-serif;
  font-size: 22px;
}
.header__logo span {
  display: inline-block;
  -webkit-animation: showText 2.5s ease-in-out infinite;
          animation: showText 2.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 16px;
  }
}

@-webkit-keyframes showText {
  0% {
    translate: 0 100%;
    opacity: 0;
  }
  30% {
    translate: 0 0;
    opacity: 1;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}

@keyframes showText {
  0% {
    translate: 0 100%;
    opacity: 0;
  }
  30% {
    translate: 0 0;
    opacity: 1;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
@media screen and (max-width: 550px) {
  .header__contents {
    display: none;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .header__lists {
    gap: 6px;
  }
}

.header__link {
  border-radius: 50%;
  padding: 23px 8px;
  font-size: 20px;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
  height: 100%;
  font-family: "Mv Boli", sans-serif;
}
.header__link.is-hover {
  background: #fff;
}
.header__link:hover {
  color: #3ea1d1;
}
@media screen and (max-width: 767px) {
  .header__link {
    font-size: 16px;
  }
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .drawer__icon {
    display: block;
    margin-left: auto;
    position: relative;
    width: 32px;
    height: 32px;
  }
  .drawer__icon.is-checked .icon-bar:nth-child(1) {
    top: 16px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer__icon.is-checked .icon-bar:nth-child(2) {
    display: none;
  }
  .drawer__icon.is-checked .icon-bar:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.icon-bar {
  display: none;
}
@media screen and (max-width: 767px) {
  .icon-bar {
    display: block;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 3px;
    background: #fff;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, top 0.3s;
    transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
  }
  .icon-bar:nth-child(1) {
    top: 0;
    right: 0;
    width: 32px;
  }
  .icon-bar:nth-child(2) {
    top: 16px;
    right: 0;
    width: 32px;
  }
  .icon-bar:nth-child(3) {
    top: 32px;
    right: 0;
    width: 32px;
  }
}

.drawer__contents {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__contents {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .drawer__contents {
    display: block;
    padding: 90px 60px 90px;
    background: #808080;
    list-style: none;
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .drawer__contents.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .drawer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-right: auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .drawer__link {
    font-size: 22px;
  }
}

.fv {
  position: relative;
  overflow: hidden;
  margin-bottom: 110px;
}

.fv__img {
  width: 100%;
  position: relative;
}
.fv__img picture,
.fv__img img {
  z-index: 1;
  border-radius: 0 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .fv__img picture,
  .fv__img img {
    border-radius: 0 0 20px 20px;
  }
}

.fv__inner {
  padding-inline: 20px;
}

.fv__contents {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 20%;
  left: 0;
  padding-inline: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#b2ebf9), color-stop(30%, #63c8f3), color-stop(60%, #0071bc), to(#003b88));
  background: linear-gradient(to right, #b2ebf9 0%, #63c8f3 30%, #0071bc 60%, #003b88 100%);
  background-size: 200% auto;
  -webkit-animation: gradientWave 3s ease-in-out infinite alternate;
          animation: gradientWave 3s ease-in-out infinite alternate;
  -webkit-transform: skew(-10deg);
          transform: skew(-10deg);
}

@-webkit-keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.fv__heading-main {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  font-family: "Mv Boli", sans-serif;
}
@media screen and (max-width: 767px) {
  .fv__heading-main {
    font-size: 23px;
  }
}

.works {
  background: -webkit-gradient(linear, left top, right top, from(#b2ebf9), color-stop(30%, #63c8f3), color-stop(60%, #0071bc), to(#003b88));
  background: linear-gradient(to right, #b2ebf9 0%, #63c8f3 30%, #0071bc 60%, #003b88 100%);
  background-size: 200% auto;
  -webkit-animation: gradientWave 3s ease-in-out infinite alternate;
          animation: gradientWave 3s ease-in-out infinite alternate;
  border-radius: 30px;
}
@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.works__inner {
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .works__inner {
    padding-inline: 0;
  }
}

.works__attention {
  margin-top: 10px;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-align: left;
  margin-left: 100px;
}
@media screen and (max-width: 767px) {
  .works__attention {
    font-size: 14px;
    text-underline-offset: 4px;
    margin-left: unset;
  }
}

.works__slider {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .works__slider {
    width: 100%;
    margin-inline: auto;
  }
}

.works__swiper {
  padding-bottom: 45px;
  padding-inline: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works__swiper {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 767px) {
  .works__swiper {
    padding-inline: 0;
    margin-inline: auto;
    width: 100%;
    padding-bottom: 20px;
  }
}

.works-card {
  border-radius: 15px;
  overflow: hidden;
}
.works-card__img {
  text-align: center;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .works-card__img {
    width: 100%;
    height: 300px;
    margin-inline: auto;
  }
  .works-card__img img {
    width: 100%;
    height: 100%;
  }
}

.works-card__description {
  height: 50px;
  background: #ebe4e4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-inline: 10px;
}
.works-card__description p {
  font-size: 20px;
  font-family: "Mv Boli", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works-card__description p {
    font-size: 16px;
  }
}

.works-card__description-link {
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.works-card__description-link:hover {
  color: #3ea1d1;
}

.works__prev,
.works__next {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
}
.works__prev::after,
.works__next::after {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works__prev,
  .works__next {
    width: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .works__prev,
  .works__next {
    width: 50px;
    height: 50px;
    top: 68%;
  }
}

.works__prev {
  border-radius: 50%;
  background: url(../img/left-Icon-.png) no-repeat center center/contain, yellow;
  left: 0;
}

.works__next {
  border-radius: 50%;
  background: url(../img/right-Icon-.png) no-repeat center center/contain, yellow;
  right: 0;
}

.works__scrollbar {
  width: 100%;
  top: unset;
  left: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: 0 !important;
}
.works__scrollbar.swiper-scrollbar-horizontal {
  width: 50%;
  margin-inline: auto;
  height: 8px;
  color: #3ea1d1;
}
@media screen and (max-width: 767px) {
  .works__scrollbar.swiper-scrollbar-horizontal {
    height: 5px;
  }
}

.swiper-scrollbar-drag {
  background: yellow;
}

.service {
  background: #fff;
}

.service__heading-main {
  color: #333;
}

.service__heading-sub {
  color: #333;
}

.section__lead-text {
  margin-top: 30px;
  padding-left: 100px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .section__lead-text {
    padding-left: 0;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.9;
    text-align: left;
  }
}

.service__content {
  margin-top: 50px;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__list {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .service__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}

.service__item {
  border: 2px solid #808080;
  position: relative;
  width: 100%;
  padding: 10px 20px;
}

.service__item-img {
  text-align: center;
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__item-img {
    top: -25px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-img {
    top: -25px;
  }
}
.service__item-img img {
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__item-img img {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-img img {
    width: 50px;
    height: 50px;
  }
}
.service__item-img::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__item-img::before {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-img::before {
    width: 60px;
    height: 60px;
  }
}

.service__item-name {
  margin-top: 35px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #3ea1d1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__item-name {
    font-size: 25px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-name {
    font-size: 18px;
    margin-top: 25px;
  }
}

.service__item-text {
  margin-top: 20px;
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__item-text {
    font-size: 16px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-text {
    font-size: 14px;
    margin-top: 15px;
  }
}

.about-me {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#b2ebf9), color-stop(30%, #63c8f3), color-stop(60%, #0071bc), to(#003b88));
  background: linear-gradient(to right, #b2ebf9 0%, #63c8f3 30%, #0071bc 60%, #003b88 100%);
  background-size: 200% auto;
  -webkit-animation: gradientWave 3s ease-in-out infinite alternate;
          animation: gradientWave 3s ease-in-out infinite alternate;
}
@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.about-me__content-wrap {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .about-me__content-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.about-me__icon-img {
  border-radius: 10%;
  overflow: hidden;
  position: relative;
}
.about-me__icon-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#fff 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.5;
  z-index: 10;
}
.about-me__icon-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.about-me__content {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .about-me__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about-me__content-text {
  color: #fff;
  text-align: center;
  padding: 3px 10px;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  margin-top: 30px;
  font-size: 22px;
  font-weight: 700;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-me__content-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .about-me__content-text {
    font-size: 20px;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.about-me__table {
  width: 100%;
  text-align: center;
  color: #fff;
}
.about-me__table th,
.about-me__table td {
  padding: 10px 20px;
  font-size: 28px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-me__table th,
  .about-me__table td {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-me__table th,
  .about-me__table td {
    padding: 5px 10px;
    font-size: 16px;
  }
}
.about-me__table th {
  width: 200px;
  font-weight: 700;
}
.about-me__table td {
  width: 300px;
}
.about-me__table tr:nth-child(4) th {
  color: #9a8080;
  vertical-align: middle;
  background: rgb(239, 239, 3);
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-me__table tr:nth-child(4) td {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-me__table tr:nth-child(4) td {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .about-me__table tr:nth-child(4) td {
    font-size: 16px;
  }
}

.contact {
  padding-top: 40px;
}

.contact__form {
  margin-top: 40px;
  text-align: left;
  gap: 20px;
  width: 100%;
}

.contact__field {
  margin-top: 30px;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.form__field.is-error:not(.is-message) .form-field__label {
  color: #ce2073;
}
@media screen and (max-width: 767px) {
  .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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .form__field-head {
    width: 100%;
  }
}

.form-field__label {
  width: 150px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form-field__label {
    width: auto;
  }
}

.form-field__tag {
  background: #ce2073;
  color: #fff;
  margin-left: 10px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .form-field__item {
    width: 100%;
  }
}
.form-field__item.is-error .form-field__select-wrap::after {
  background-color: #ce2073;
}
.form-field__item.is-error [type=text],
.form-field__item.is-error [type=email] {
  background: #fff0f7;
}
.form-field__item.is-error select {
  background: #fff0f7;
  outline: none;
}
.form-field__item [type=text],
.form-field__item [type=email] {
  padding: 16px;
  width: 100%;
  height: 56px;
  border: 3px solid transparent;
  background: #f5f5f5;
  border-radius: 4px;
}
.form-field__item [type=text]:focus,
.form-field__item [type=email]:focus {
  outline: none;
  border: 3px solid #3ea1d1;
}
.form-field__item::-webkit-input-placeholder {
  color: #f5f5f5;
}
.form-field__item::-moz-placeholder {
  color: #f5f5f5;
}
.form-field__item:-ms-input-placeholder {
  color: #f5f5f5;
}
.form-field__item::-ms-input-placeholder {
  color: #f5f5f5;
}
.form-field__item::placeholder {
  color: #f5f5f5;
}
.form-field__item textarea {
  padding: 16px;
  border: 1px solid transparent;
  background: #f5f5f5;
  border-radius: 5px;
  width: 100%;
  height: 160px;
}
.form-field__item textarea:focus {
  outline: none;
  border: 3px solid #3ea1d1;
}

.form-field__select-wrap {
  position: relative;
}
.form-field__select-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0px 8px 8px 0;
  background-color: #3ea1d1;
  width: 72px;
  height: 56px;
  pointer-events: none;
  background-image: url(../img/contact-Icon.png);
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 37px 37px;
}
.form-field__select-wrap select {
  width: 100%;
  height: 56px;
  border: 3px solid transparent;
  padding: 14px 72px 14px 16px;
  background: #f5f5f5;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-field__select-wrap select:focus {
  outline: none;
  border: 3px solid #3ea1d1;
}

.contact__privacy {
  margin-top: 40px;
  text-align: center;
}
.contact__privacy.is-error .form-checkbox__text::before {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.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 {
  display: block;
}

.form-checkbox__text {
  position: relative;
  padding-left: 34px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 338px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  text-underline-offset: 5px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 18px;
}
@media screen and (max-width: 338px) {
  .form-checkbox__text a {
    font-size: 16px;
  }
}
.form-checkbox__text a:hover {
  color: #3ea1d1;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border-radius: 4px;
  background-size: 24px 24px;
}
.form-checkbox__text::after {
  display: none;
  top: 12px;
  left: 3px;
  background: url(../img/contact-check.png) no-repeat center center/contain;
  width: 18px;
  height: 18px;
}

.contact__button {
  margin-top: 40px;
  max-width: 350px;
  padding-bottom: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__button {
    max-width: 200px;
  }
}