@charset "UTF-8";

/* =========================
   Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li, dl, dt, dd,
table, tr, th, td,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================
   Base
========================= */
:root {
  --green-dark: #0f4f43;
  --green: #1b6a58;
  --green-light: #2e8b75;
  --green-soft: #edf5f1;
  --line: #dbe7e2;
  --text: #26322e;
  --text-light: #66756f;
  --white: #ffffff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

body.menu-open {
  overflow: hidden;
}

.inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--green-dark);
}

.section-lead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-light);
}

.btn {
  min-width: 220px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  border-radius: 999px;
  transition: 0.35s ease;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  border: 1px solid var(--green-dark);
}

.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}

/* 改行制御 */
.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 22px 0;
  transition: 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.site-logo-en,
.site-logo-jp {
  color: var(--green-dark);
  transition: color 0.35s ease;
}

.site-logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.site-logo-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 6px;
  line-height: 1.2;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.global-nav a {
  position: relative;
  font-size: 14px;
  color: var(--green-dark);
  letter-spacing: 0.12em;
  transition: color 0.35s ease;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: 0.3s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

/* 下層ページ初期表示だけ白 */
.site-header--light:not(.is-scrolled) .site-logo-en,
.site-header--light:not(.is-scrolled) .site-logo-jp {
  color: #fff;
}

.site-header--light:not(.is-scrolled) .global-nav a {
  color: #fff;
}

.site-header--light:not(.is-scrolled) .menu-toggle span {
  background: #fff;
}

/* =========================
   FV
========================= */
.fv {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(237, 245, 241, 0.92) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(237, 245, 241, 0.82) 100%);
}

.fv-bg-wrap,
.fv-bg {
  position: absolute;
  inset: 0;
}

.fv-bg {
  background:
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)),
    url("../images/fv-logo-bg.png") center center / 70% auto no-repeat;
  opacity: 0.22;
  transform: scale(1.02);
  animation: fvFloat 8s ease-in-out infinite alternate;
}

@keyframes fvFloat {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 139, 117, 0.08), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(15, 79, 67, 0.08), transparent 28%);
  pointer-events: none;
}

.fv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-copy {
  max-width: 900px;
  width: 100%;
  padding-left: 0;
  text-align: center;
}

.fv-sub {
  font-family: "Cormorant Garamond", serif;
  color: var(--green);
  font-size: 24px;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}

.fv h1 {
  font-size: 64px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  font-weight: 700;
}

.fv h1 span {
  display: block;
}

.fv-text {
  max-width: 620px;
  margin: 42px auto 0;
  font-size: 17px;
  color: #33423d;
}

.fv-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.fv-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
}

.fv-scroll span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--green-dark);
  position: relative;
  padding-bottom: 54px;
}

.fv-scroll span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 44px;
  background: var(--green-dark);
  transform: translateX(-50%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(-50%) scaleY(0.25);
    transform-origin: top;
    opacity: 0.25;
  }
  50% {
    transform: translateX(-50%) scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scaleY(0.25);
    transform-origin: bottom;
    opacity: 0.25;
  }
}

/* =========================
   About
========================= */
.about {
  background: var(--green-dark);
}

.about .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.about .section-title {
  color: #fff;
}

.about-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
}

.about-content p:first-child {
  margin-top: 0;
}

/* =========================
   Business
========================= */
.business {
  background: linear-gradient(180deg, #f8fbf9 0%, #eef6f2 100%);
}

.business-grid {
  display: grid;
  gap: 28px;
}

.business-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.business-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 56, 47, 0.07);
  transition: 0.4s ease;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(12, 56, 47, 0.12);
}

.business-card-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.business-card:hover .business-card-image img {
  transform: scale(1.06);
}

.business-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 24px 36px;
}

.business-card h3 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--green-dark);
}

.business-card p {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 15px;
}

.business-link {
  display: block;
  width: 52%;
  margin-top: auto;
  margin-left: auto;
  margin-right: 18px;
  padding-top: 28px;
  color: var(--green-dark);
  transform: translateX(-16px);
  transition: transform 0.35s ease;
}

.business-link__text {
  display: block;
  width: fit-content;
  margin-left: 18px;
  margin-right: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}

.business-link__line {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 14px;
  border-bottom: 1px solid var(--green-dark);
}

.business-link__line::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 20px;
  border-bottom: 1px solid var(--green-dark);
  transform: rotate(27deg);
  transform-origin: right center;
}

.business-card:hover .business-link {
  transform: translateX(0);
}

.business-card:hover .business-link__text {
  opacity: 0.85;
}

/* =========================
   Company
========================= */
.company-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}

.company-image {
  height: 100%;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 56, 47, 0.08);
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-table-wrap {
  display: flex;
}

.company-table {
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--line);
  border-collapse: collapse;
}

.company-table tr {
  height: 1px;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid var(--line);
  padding: 28px 10px;
  text-align: left;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.9;
}

.company-table th {
  width: 140px;
  color: var(--green-dark);
  font-weight: 500;
}

.company-table td {
  color: var(--text);
}

/* =========================
   Contact
========================= */
.contact {
  background: #f7faf8;
}

.contact-form {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 16px 40px rgba(12, 56, 47, 0.06);
}

.form-row + .form-row {
  margin-top: 24px;
}

.form-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 500;
}

.form-row label span {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: var(--green);
  padding: 5px 8px;
  border-radius: 999px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfded8;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--text);
  outline: none;
  transition: 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 139, 117, 0.08);
}

.form-submit {
  margin-top: 36px;
  text-align: center;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 42px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .site-logo-en,
.site-footer .site-logo-jp {
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.copyright {
  margin-top: 24px;
  font-size: 12px;
  opacity: 0.7;
}

/* =========================
   Sub Page
========================= */
.sub-fv {
  position: relative;
  height: 520px;
  min-height: 520px;
  margin-top: 0;
  overflow: hidden;
  background: var(--green-dark);
}

.sub-fv__bg,
.sub-fv__bg img,
.sub-fv__overlay {
  position: absolute;
  inset: 0;
}

.sub-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-fv__overlay {
  background:
    linear-gradient(90deg, rgba(15, 79, 67, 0.82) 0%, rgba(15, 79, 67, 0.55) 40%, rgba(15, 79, 67, 0.18) 100%);
}

.sub-fv__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 96px;
}

.sub-fv__copy {
  max-width: 720px;
  color: #fff;
}

.sub-fv__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.sub-fv h1 {
  font-size: 54px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
}

.sub-fv__text {
  margin-top: 28px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.sub-intro {
  background: #fff;
}

.sub-intro__text p + p {
  margin-top: 22px;
}

.service-features {
  background: linear-gradient(180deg, #f8fbf9 0%, #eef6f2 100%);
}

.service-features__inner {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.service-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-feature {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(12, 56, 47, 0.06);
}

.service-feature__num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 60px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(15, 79, 67, 0.34);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-variant-numeric: lining-nums tabular-nums;
}

.service-feature__body h3 {
  font-size: 24px;
  line-height: 1.5;
  color: var(--green-dark);
  font-weight: 700;
}

.service-feature__body p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-light);
}

.service-message {
  background: linear-gradient(180deg, #f8fbf9 0%, #eef6f2 100%);
}

.service-message__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.service-message__image {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 56, 47, 0.08);
}

.service-message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-message__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-message__text .section-head {
  margin-bottom: 56px;
}

.service-message__content {
  margin-top: 0;
}

.service-message__content p + p {
  margin-top: 22px;
}

.service-message__btns {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
}

/* =========================
   Animation
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUpHero 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .fv h1 {
    font-size: 50px;
  }

  .company-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-image {
    height: auto;
    min-height: 0;
  }

  .company-image img {
    height: auto;
  }

  .business-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sub-fv {
    height: 460px;
    min-height: 460px;
  }

  .sub-fv h1 {
    font-size: 44px;
  }

  .service-features__inner {
    width: min(900px, calc(100% - 48px));
  }

  .service-message__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-message__image {
    height: auto;
  }

  .service-message__image img {
    height: auto;
  }
}

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

  .sp-br {
    display: block;
  }

  .section {
    padding: 88px 0;
  }

  .inner,
  .narrow,
  .service-features__inner {
    width: min(100%, calc(100% - 48px));
  }

  .site-header {
    padding: 16px 0;
  }

  .site-header.is-scrolled {
    padding: 12px 0;
  }

  .site-logo-en {
    font-size: 30px;
    letter-spacing: 0.12em;
  }

  .site-logo-jp {
    font-size: 15px;
    letter-spacing: 0.04em;
    margin-top: 6px;
    line-height: 1.2;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 2101;
    position: relative;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    margin-left: auto;
    transition: 0.3s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header--light:not(.is-scrolled) .menu-toggle span {
    background: #fff;
  }

  .site-header--light:not(.is-scrolled) .menu-toggle.is-open span {
    background: var(--green-dark);
  }

  .global-nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    z-index: 2100;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .global-nav a,
  .site-header--light:not(.is-scrolled) .global-nav a,
  .site-header--light:not(.is-scrolled) .global-nav.is-open a {
    font-size: 18px;
    color: var(--green-dark);
  }

  .global-nav a::after,
  .site-header--light:not(.is-scrolled) .global-nav a::after,
  .site-header--light:not(.is-scrolled) .global-nav.is-open a::after {
    background: var(--green-dark);
  }

  .fv {
    display: block;
    min-height: auto;
    padding-bottom: 56px;
  }

  .fv-bg {
    background:
      linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)),
      url("../images/fv-logo-bg.png") center 80px / 76% auto no-repeat;
    opacity: 0.16;
  }

  .fv-inner {
    display: block;
    padding-top: 96px;
    padding-bottom: 0;
    min-height: auto;
  }

  .fv-copy {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
    margin-top: 240px;
  }

  .fv-sub {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }

  .fv h1 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 700;
  }

  .fv-text {
    margin: 30px auto 0;
    font-size: 14px;
  }

  .fv-btns {
    margin-top: 28px;
    gap: 12px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .btn {
    width: calc(50% - 6px);
    max-width: none;
    min-width: 0;
    padding: 14px 12px;
    font-size: 14px;
  }

  .fv-scroll {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 52px;
    text-align: center;
  }

  .section-label {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .about-content p {
    font-size: 14px;
    margin-top: 18px;
  }

  .business-grid--3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-card-body {
    padding: 22px 20px 30px;
  }

  .business-card h3 {
    font-size: 22px;
  }

  .business-link {
    width: 48%;
    margin-right: 14px;
    padding-top: 24px;
    transform: translateX(-12px);
  }

  .business-link__text {
    font-size: 12px;
    margin-left: 10px;
    letter-spacing: 0.16em;
  }

  .business-link__line {
    margin-top: 12px;
  }

  .business-link__line::after {
    width: 16px;
  }

  .business-card:hover .business-link {
    transform: translateX(0);
  }

  .company-wrap {
    gap: 28px;
  }

  .company-table-wrap {
    display: block;
  }

  .company-table tr {
    height: auto;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 14px 6px;
    font-size: 14px;
    line-height: 1.8;
  }

  .company-table th {
    padding-bottom: 0;
    border-bottom: none;
  }

  .company-table td {
    padding-top: 8px;
    vertical-align: top;
  }

  .contact-form {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .form-row + .form-row {
    margin-top: 18px;
  }

  .footer-nav {
    gap: 14px 20px;
    margin-top: 22px;
  }

  .sub-fv {
    height: 360px;
    min-height: 360px;
  }

  .sub-fv__inner {
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 42px;
  }

  .sub-fv__label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .sub-fv h1 {
    font-size: 30px;
    line-height: 1.45;
  }

  .sub-fv__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .service-feature {
    grid-template-columns: 52px 1fr;
    align-items: start;
    gap: 10px 12px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .service-feature__num {
    grid-column: 1;
    grid-row: 1;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.02em;
    align-self: start;
    margin-top: 2px;
  }

  .service-feature__body {
    display: contents;
  }

  .service-feature__body h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    align-self: center;
  }

  .service-feature__body p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 8px;
  }

  .service-message__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-message__image {
    height: auto;
    border-radius: 24px;
  }

  .service-message__image img {
    height: auto;
  }

  .service-message__text .section-head {
    margin-bottom: 34px;
  }

  .service-message__content {
    margin-top: 0;
  }

  .service-message__content p + p {
    margin-top: 18px;
  }

  .service-message__btns {
    margin-top: 40px;
    gap: 20px;
    flex-direction: column;
  }

  .service-message__btns .btn {
    width: 100%;
  }
}