@charset "UTF-8";
/** @format */
/** @format */
html {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 400;
}

body {
  font-family: inherit;
}

:lang(en) {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.c-pagehead {
  --header-h: 80px;
  padding-top: calc(var(--header-h) + 120px);
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .c-pagehead {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 28px;
  }
}

.c-sectionhead {
  text-align: center;
  margin-bottom: 80px;
}
.c-sectionhead__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.c-sectionhead__subtitle {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 0;
  color: #333333;
}
@media (max-width: 767px) {
  .c-sectionhead {
    margin-bottom: 40px;
  }
  .c-sectionhead__title {
    font-size: 36px;
  }
  .c-sectionhead__subtitle {
    font-size: 14px;
  }
}

.c-breadcrumb {
  margin: 0 0 40px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-breadcrumb {
    margin-bottom: 24px;
    font-size: 10px;
  }
}

.c-lead {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: center;
}
@media (max-width: 768px) {
  .c-lead {
    font-size: 13px;
    line-height: 2;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #444;
  border: 2px solid #444;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.35s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.35s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#CDEBE3), to(#A8E0D1));
  background: linear-gradient(90deg, #CDEBE3 0%, #A8E0D1 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}
.c-btn span {
  position: relative;
  z-index: 1;
}
.c-btn::after {
  content: " ›";
  position: relative;
  margin-left: 6px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.c-btn:hover {
  color: #2F5F57;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.c-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn:hover::after {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .c-btn {
    font-size: 14px;
    padding: 12px 32px;
  }
}
@media (max-width: 440px) {
  .c-btn {
    font-size: 11px;
    padding: 12px 16px;
  }
}
.c-btn-contact {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 20px 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid #7EC8B6;
  color: #3F6F67;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* グラデーション */
}
.c-btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#BFE8DD), to(#8FD6C5));
  background: linear-gradient(90deg, #BFE8DD 0%, #8FD6C5 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}
.c-btn-contact span {
  position: relative;
  z-index: 1;
}
.c-btn-contact::after {
  content: " → ";
  margin-left: 8px;
  position: relative;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.c-btn-contact:hover {
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.c-btn-contact:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn-contact:hover::after {
  margin-left: 14px;
}

/* SP */
@media (max-width: 767px) {
  .c-btn-contact {
    max-width: 100%;
    font-size: 15px;
  }
}
.contact-cta {
  padding: 140px 0;
  background: #f7faf8;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-cta {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .contact-cta {
    padding: 80px 0;
  }
}

.contact-cta__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-cta__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 60px;
}

.contact-cta__lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 48px;
}

.contact-cta__text {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.contact-cta__illust img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
}

.contact-cta__illust-sp {
  display: none;
}

.contact-cta__note {
  margin-top: 50px;
  font-size: 14px;
  color: #6BC1A9;
  font-weight: 600;
}

.contact-cta__button-wrapper {
  margin-top: 20px;
}

.contact-cta__button {
  position: relative;
  display: inline-block;
  padding: 20px 72px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6BC1A9, #58B79F);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.contact-cta__button span {
  position: relative;
  z-index: 2;
}
.contact-cta__button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.contact-cta__button:hover::after {
  left: 130%;
}
.contact-cta__button:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .contact-cta__main {
    display: block;
  }
  .contact-cta__illust {
    display: none;
  }
  .contact-cta__illust-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 40px;
  }
  .contact-cta__illust-sp img {
    max-width: 80px;
    width: 100%;
  }
  .contact-cta__lead {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .contact-cta__text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact-cta__illust-sp img {
    max-width: 100px;
  }
  .contact-cta__button {
    padding: 18px 56px;
    font-size: 14px;
  }
  .contact-cta__lead {
    font-size: 19px;
  }
}
.pc {
  display: block;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
}
.is-corporate {
  background: #E6F5F1;
  color: #4A9E8A;
}

.is-lp {
  background: rgba(232, 241, 251, 0.95);
  color: #4A7FCF;
}

.is-blog {
  background: #FFF3E6;
  color: #E39B4A;
}

.is-ec {
  background: #FDECEF;
  color: #D96A7C;
}

.is-portfolio {
  background: #F2ECFF;
  color: #8A6AD9;
}

.is-banner {
  background: #FFF9E6;
  color: #D9A441;
}

.c-cta {
  text-align: center;
  margin-top: 48px;
}

.c-cta__btn {
  position: relative;
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid #98D4C7;
  color: #98D4C7;
  background: transparent;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.c-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#98D4C7), to(#6BC1A9));
  background: linear-gradient(90deg, #98D4C7 0%, #6BC1A9 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 0;
}
.c-cta__btn span {
  position: relative;
  z-index: 1;
}
.c-cta__btn:hover {
  color: #fff;
}
.c-cta__btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.fv__inner,
.works__container,
.consultation__container,
.service__container,
.about__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .fv__inner,
  .works__container,
  .consultation__container,
  .service__container,
  .about__container {
    padding: 0 40px;
  }
}

.fv {
  padding: 120px 0 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: calc(100vh - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.fv__inner {
  text-align: center;
}
.fv__text {
  margin-bottom: 40px;
}
.fv__title {
  margin: 0;
}
.fv__titleline {
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.fv__titleline:first-child {
  font-size: 22px;
  margin-bottom: 8px;
}
.fv__titleline--strong {
  font-size: 26px;
}
.fv__lead {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.fv__imagewrap {
  width: 50%;
  margin: 0 auto;
}
.fv__image {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .fv {
    padding: 140px 0 100px;
  }
  .fv__text {
    margin-bottom: 56px;
  }
  .fv__titleline:first-child {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .fv__titleline--strong {
    font-size: 40px;
  }
  .fv__lead {
    margin-top: 24px;
    font-size: 16px;
  }
  .fv__imagewrap {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .fv__titleline:first-child {
    font-size: 20px;
  }
  .fv__titleline--strong {
    font-size: 19px;
  }
  .fv__lead {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .fv__lead {
    font-size: 11px;
  }
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: -70px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
  width: 60px;
  height: 160px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.scroll::before {
  content: "";
  position: absolute;
  top: 130px;
  width: 1px;
  height: 80px;
  background: #333333;
  -webkit-animation: scroll 1.6s ease-in-out infinite;
          animation: scroll 1.6s ease-in-out infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.works {
  padding: 160px 0 100px;
}
@media (max-width: 767px) {
  .works {
    padding: 160px 0 80px;
  }
}
.works__container {
  text-align: center;
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 64px 0;
}
@media (max-width: 1024px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .works__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.works-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 28px;
  text-align: left;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.works-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.works-card__image {
  display: block;
  margin-bottom: 20px;
}

.works-card__img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.works-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.works-card__category {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
  width: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.works-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
}

.works-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.works-card__link {
  font-size: 14px;
  color: #4A9E8A;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.works-card__link:hover {
  opacity: 0.7;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.consultation {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.consultation__inner {
  background-color: #F4FCF5;
  padding: 80px 0 40px;
}
.consultation__container {
  text-align: center;
}
.consultation__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.consultation__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 120px;
}
.consultation__image img {
  display: block;
  width: 100%;
  height: auto;
}
.consultation__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #333333;
  line-height: 1.75;
  white-space: nowrap;
}
.consultation__wave {
  width: 100%;
  line-height: 0;
  background: #FFFFFF;
  height: clamp(120px, 18vw, 260px);
}
.consultation__wave img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .consultation__inner {
    padding: 48px 0;
  }
  .consultation__head {
    gap: 16px;
  }
  .consultation__image {
    width: 80px;
  }
  .consultation__title {
    font-size: 16px;
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: left;
  }
  .consultation__wave {
    height: clamp(90px, 22vw, 180px);
  }
}

.service {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .service {
    padding: 60px 0;
  }
}
.service__container {
  text-align: center;
}
.service__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin: 56px auto 56px;
}
@media (max-width: 1024px) {
  .service__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .service__items {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 40px auto 40px;
  }
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 28px 26px 24px;
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .service-card {
    padding: 24px 18px 20px;
  }
}
.service-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
          box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}
.service-card__catch {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #4A9E8A;
  background: rgba(152, 212, 199, 0.18);
  padding: 6px 10px;
  border-radius: 8px;
  margin: 0 auto 16px;
}
.service-card__image {
  width: min(240px, 100%);
  margin: 0 auto 18px;
}
.service-card__img {
  display: block;
  width: 100%;
  height: auto;
}
.service-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 14px;
}
@media (max-width: 767px) {
  .service-card__title {
    font-size: 20px;
  }
}
.service-card__desc, .service-card__list, .service-card__note {
  width: min(34ch, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.service-card__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .service-card__desc {
    font-size: 14px;
  }
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
}
.service-card__list li {
  display: block;
  padding-left: 4px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
.service-card__list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #98D4C7;
  margin-right: 10px;
}
.service-card__for {
  width: min(34ch, 100%);
  margin: 0 auto 8px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.06em;
}
.service-card__note {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.service-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
  color: #4A9E8A;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 24px;
}
.service-card__link:hover {
  opacity: 0.7;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.about {
  position: relative;
  overflow: hidden;
  background: transparent;
  --wave-h: 260px;
  padding: 0;
}
.about__wave {
  width: 100%;
  height: var(--wave-h);
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.about__wave img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.about__head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wave-h);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 160px;
  text-align: center;
  pointer-events: none;
}
.about__body {
  position: relative;
  z-index: 1;
  background: #F4FCF5;
  padding: 48px 0 140px;
}
.about__container {
  text-align: center;
}
.about__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 0 0 48px;
}
.about__image {
  width: 320px;
  justify-self: start;
}
.about__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.14), 0 0 0 4px rgba(255, 255, 255, 0.6);
          box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.14), 0 0 0 4px rgba(255, 255, 255, 0.6);
}
.about__text {
  max-width: 640px;
}
.about__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
.about__description {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .about {
    --wave-h: 200px;
  }
  .about__head {
    padding-top: 120px;
  }
  .about__body {
    padding: 40px 0 80px;
  }
  .about__content {
    grid-template-columns: 1fr;
    row-gap: 24px;
    justify-items: center;
    text-align: center;
    padding-bottom: 24px;
  }
  .about__image {
    width: 220px;
    justify-self: center;
    margin: 0 auto;
    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;
  }
  .about__image img {
    margin: 0 auto;
  }
  .about__text {
    max-width: 520px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  .about__name {
    font-size: 22px;
    text-align: center;
    margin-bottom: 16px;
  }
  .about__description {
    line-height: 2;
    font-size: 14px;
  }
}