:root {
  --color-black: #050505;
  --color-text: #111;
  --color-muted: #555;
  --color-line: #d9d9d9;
  --color-bg: #fff;
  --color-soft: #f1f1f1;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --container: min(1100px, calc(100vw - 48px));
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  background: url("img/bg.webp") center center / cover no-repeat fixed;
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  position: relative;
}

body::before {
  background: rgba(255, 255, 255, 0.9);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  transition: background 0.7s ease;
  z-index: 0;
}

body.is-dark-bg::before {
  background: #173261e6;
}

body.is-footer-bg::before {
  background: rgba(239, 239, 239, 0.9);
}

body > * {
  position: relative;
  z-index: 1;
}

.loading-screen {
  align-items: center;
  background: #fff;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  visibility: visible;
  z-index: 9999;
}

.loading-screen.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loading-orbit {
  animation: loading-orbit-spin 1.45s linear 1.45s infinite;
  height: 96px;
  position: relative;
  transform-origin: 50% 50%;
  width: 96px;
}

.loading-orbit span {
  border-radius: 50%;
  display: block;
  height: 28px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) translateX(var(--loading-line-x));
  transform-origin: 50% 50%;
  width: 28px;
}

.loading-orbit span:nth-child(1) {
  --loading-orbit-x: 0px;
  --loading-orbit-y: -36px;
  --loading-line-x: -50px;
  background: #b9b4d2;
  animation: loading-dot-enter 1.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0s;
}

.loading-orbit span:nth-child(2) {
  --loading-orbit-x: 31.18px;
  --loading-orbit-y: 18px;
  --loading-line-x: 0px;
  background: #96beb4;
  animation: loading-dot-enter 1.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.08s;
}

.loading-orbit span:nth-child(3) {
  --loading-orbit-x: -31.18px;
  --loading-orbit-y: 18px;
  --loading-line-x: 50px;
  background: #a5b9d2;
  animation: loading-dot-enter 1.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.16s;
}

@keyframes loading-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading-dot-enter {
  0% {
    transform: translate(-50%, -50%) translateX(var(--loading-line-x));
  }

  16% {
    transform: translate(-50%, -50%) translateX(var(--loading-line-x)) translateY(-16px);
  }

  32% {
    transform: translate(-50%, -50%) translateX(var(--loading-line-x)) translateY(0);
  }

  68% {
    transform: translate(-50%, -50%) translateX(var(--loading-line-x)) translateY(0);
  }

  100% {
    transform: translate(-50%, -50%) translate(var(--loading-orbit-x), var(--loading-orbit-y));
  }
}

img {
  display: block;
  height: auto;
}

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

.site-header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 28px 32px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.site-logo {
  display: block;
  flex: 0 1 clamp(180px, 21vw, 300px);
  min-width: 0;
  width: clamp(180px, 21vw, 300px);
}

.site-logo img {
  width: 100%;
  transition: filter 0.35s ease;
}

body.is-dark-bg .site-header .site-logo img {
  filter: brightness(0) invert(1);
}

.footer-company img,
.association-link img {
  mix-blend-mode: multiply;
}

.global-nav {
  align-items: center;
  background: transparent;
  color: #fff;
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  max-width: calc(100vw - clamp(250px, 30vw, 390px));
  mix-blend-mode: difference;
  position: fixed;
  right: 32px;
  top: 28px;
  transition: 0.3s;
  white-space: nowrap;
  z-index: 101;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 20px;
  top: 20px;
  transition: color 0.28s ease;
  width: 48px;
  z-index: 120;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  width: 36px;
}

body.is-dark-bg .nav-toggle {
  color: #fff;
}

body.is-nav-open .nav-toggle {
  color: #111;
}

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

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

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

.global-nav a {
  color: inherit;
}

.nav-service {
  position: relative;
}

.nav-service-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  gap: 10px;
  letter-spacing: inherit;
  padding: 0;
}

.nav-service-button span {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  height: 8px;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.24s ease;
  width: 8px;
}

.nav-service.is-open .nav-service-button span {
  transform: translateY(2px) rotate(225deg);
}

.nav-service-menu {
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  font-size: 14px;
  gap: 0;
  left: 50%;
  min-width: 230px;
  opacity: 0;
  padding: 10px 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 18px);
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 102;
}

.nav-service-menu::before {
  background: rgba(0, 0, 0, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  height: 12px;
  left: 50%;
  position: absolute;
  top: -7px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
}

.nav-service.is-open .nav-service-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-service-menu a {
  color: #fff;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 12px 18px;
  transition: background 0.2s ease;
}

.nav-service-menu a:hover,
.nav-service-menu a:focus-visible {
  background: #0e0e0e;
}

.nav-contact,
.text-button,
.dark-button {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-weight: 700;
  gap: 28px;
  height: 66px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  max-width: 100%;
  min-width: 200px;
  padding: 0 0 0 20px;
}

.nav-contact {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 16px;
  gap: 20px;
  height: 66px;
  justify-content: center;
  min-width: 200px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  transition: color 0.28s ease;
  z-index: 0;
}

.text-button,
.dark-button {
  overflow: hidden;
  position: relative;
  transition: color 0.28s ease;
  z-index: 0;
}

.nav-contact::before {
  background: #fff;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
  z-index: -1;
}

.text-button::before {
  background: #000;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
  z-index: -1;
}

.dark-button::before {
  background: #000;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
  z-index: -1;
}

.nav-contact:hover {
  color: #000;
}

.text-button:hover {
  color: #fff;
}

.dark-button:hover {
  color: #fff;
}

.nav-contact:hover::before {
  transform: scaleX(1);
}

.text-button:hover::before,
.dark-button:hover::before {
  transform: scaleX(1);
}

.nav-contact span,
.text-button span,
.dark-button span {
  background: #000000;
  display: block;
  height: 1px;
  position: relative;
  width: 12px;
}

.nav-contact:hover span {
  background: #000;
}

.nav-contact span {
  align-items: center;
  background: #fff;
  display: flex;
  height: 22px;
  justify-content: center;
  z-index: 1;
  width: 32px;
}

.nav-contact span::before {
  background: #000;
  content: "";
  height: 1px;
  position: absolute;
  width: 12px;
}

.nav-contact span::after,
.text-button span::after,
.dark-button span::after {
  background: #000;
  content: "";
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.nav-contact:hover span::after {
  background: transparent;
  border-color: #fff;
}

.nav-contact:hover span::before {
  background: #fff;
}

.nav-contact span::after {
  background: transparent;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  height: 7px;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
}

.text-button span {
  align-items: center;
  background: #000;
  display: flex;
  height: 22px;
  justify-content: center;
  width: 32px;
}

.text-button span::before {
  background: #fff;
  content: "";
  height: 1px;
  position: absolute;
  width: 12px;
}

.text-button span::after {
  background: transparent;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  height: 7px;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
}

.text-button:hover span {
  background: #fff;
}

.text-button:hover span::before {
  background: #000;
}

.text-button:hover span::after {
  border-color: #000;
}

.text-button.contact-button {
  padding-right: 20px;
}

.dark-button span {
  align-items: center;
  background: #000;
  display: flex;
  height: 22px;
  justify-content: center;
  width: 32px;
}

.dark-button span::before {
  background: #fff;
  content: "";
  height: 1px;
  position: absolute;
  width: 12px;
}

.dark-button span::after {
  background: transparent;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  height: 7px;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
}

.dark-button:hover span {
  background: #fff;
}

.dark-button:hover span::before {
  background: #000;
}

.dark-button:hover span::after {
  border-color: #000;
}

.hero {
  min-height: 820px;
  padding: 171px 30px 0;
  position: relative;
}

.hero-image {
  border-radius: 8px;
  height: 600px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease;
  will-change: opacity;
  width: 100%;
  z-index: 0;
}

.hero-image img.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-image img.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero-copy {
  align-items: flex-start;
  bottom: 0px;
  color: #000000;
  display: flex;
  flex-direction: column;
  font-family: var(--font-en);
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 600;
  left: 30px;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  z-index: 3;
}

.hero-copy-word {
  display: block;
  font-size: 0;
  overflow: hidden;
}

.hero-copy-char {
  display: inline-block;
  font-size: clamp(58px, 8vw, 116px);
  opacity: 0;
  transform: translateY(105%);
}

.hero-copy.is-visible .hero-copy-char {
  animation: hero-copy-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.18s + var(--char-index) * 0.055s);
}

.hero-copy-dot-purple {
  color: #BAB1CF;
}

.hero-copy-dot-green {
  color: #8DBDB6;
}

.hero-copy-dot-blue {
  color: #99BBDA;
}

@keyframes hero-copy-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-message {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  letter-spacing: 0.4em;
  position: absolute;
  right: 150px;
  top: 130px;
  z-index: 3;
}

.hero-message p {
  background: #fff;
  border: 1px solid #ddd;
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 600;
  inline-size: max-content;
  line-height: 1.3;
  padding: 20px 12px;
  text-align: unset;
  writing-mode: vertical-rl;
}

.hero-message-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
}

.hero-message.is-visible .hero-message-char {
  animation: hero-copy-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.18s + var(--char-index) * 0.055s);
}



.about {
  padding: 36px 0 140px;
  position: relative;
}

.section-heading {
  margin: 0 auto;
  text-align: center;
  width: var(--container);
}

.about-heading {
  overflow: hidden;
  padding: 150px 0 56px;
  position: relative;
}

.about-heading::before {
  content: "";
  display: none;
}

.about-circles {
  height: 400px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 52px;
  transform: translateX(-50%);
  width: 400px;
  z-index: 0;
}

.about-circle {
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center center;
}

.about-circle-green {
  animation: circle-rotate 42s linear infinite;
  height: 400px;
  margin: -200px 0 0 -200px;
  width: 400px;
}

.about-circle-purple {
  animation: circle-rotate-reverse 56s linear infinite;
  height: 377px;
  margin: -188.5px 0 0 -188.5px;
  width: 377px;
}

.about-circle-blue {
  animation: circle-rotate 68s linear infinite;
  height: 353px;
  margin: -176.5px 0 0 -176.5px;
  width: 353px;
}

@keyframes circle-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes circle-rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading > * {
  position: relative;
  z-index: 1;
}

.section-heading > .about-circles {
  position: absolute;
  z-index: 0;
}

.label {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  margin-bottom: 50px;
}

.label span {
  background: #BBB2D3;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.label-white {
  color: #fff;
}

.service-intro .label-white span {
  background: #82B5B0;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.45;
}

.lead-en {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1.4;
  margin-top: 24px;
}

.lead-en strong {
  font-weight: 700;
}

.text-reveal {
  overflow: hidden;
}

.text-reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
}

.text-reveal-space {
  opacity: 1;
  transform: none;
}

.text-reveal.is-visible .text-reveal-char {
  animation: hero-copy-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.08s + var(--char-index) * 0.045s);
}

.text-reveal.is-visible .text-reveal-space {
  animation: none;
}


.lower-heading-reveal {
  overflow: hidden;
}

.lower-heading-reveal-char {
  display: inline-block;
  line-height: inherit;
  opacity: 0;
  transform: translateY(105%);
}

.lower-heading-reveal.is-visible .lower-heading-reveal-char {
  animation: hero-copy-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.18s + var(--char-index) * 0.055s);
}

.about-content {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 262px minmax(480px, 800px) 222px;
  justify-content: space-between;
  margin: 80px auto 0;
  width: min(1400px, calc(100vw - 40px));
}

.about-text {
  font-size: 20px;
  line-height: 2.2;
  text-align: center;
}

.about-text p + p {
  margin-top: 28px;
}

.about-text p {
  opacity: 0;
  transform: translateY(28px);
}

.about-text.is-visible p {
  animation: fade-in-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--paragraph-index) * 0.32s);
}

.about-text .text-button {
  font-size: 16px;
  margin-top: 54px;
  min-width: 320px;
  text-align: left;
      padding-right: 20px;
}

.about-photo {
  border-radius: 8px;
  opacity: 0;
  overflow: hidden;
  transform: translateY(var(--about-photo-start-y, 40px));
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-photo-left img,
.about-photo-right img {
  height: calc(100% + 80px);
  transform: translateY(var(--about-photo-parallax-y, 0px)) scale(1.08);
  transition: transform 0.08s linear;
  will-change: transform;
}

.about-photo.is-visible {
  animation: about-photo-fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-photo-left {
  --about-photo-end-y: 200px;
  --about-photo-start-y: 240px;
  height: 321px;
  margin-bottom: 80px;
  width: 262px;
}

.about-photo-right {
  --about-photo-end-y: 0;
  --about-photo-start-y: 40px;
  height: 400px;
  margin-bottom: 80px;
  width: 222px;
}

@keyframes about-photo-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(var(--about-photo-end-y, 0));
  }
}

.visual-strip {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 767fr) minmax(0, 479fr);
  height: 437px;
  margin: 0 auto 130px;
  overflow: hidden;
  width: min(1326px, calc(100vw - 48px));
}

.visual-strip-item {
  border-radius: 8px;
  max-width: 100%;
  min-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(var(--visual-strip-start-y, 40px));
}

.visual-strip img {
  height: calc(100% + 80px);
  min-width: 0;
  object-fit: cover;
  transform: translateY(var(--visual-strip-parallax-y, 0px)) scale(1.06);
  transition: transform 0.08s linear;
  width: 100%;
  will-change: transform;
}

.visual-strip.is-visible .visual-strip-item {
  animation: visual-strip-fade-in-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--visual-strip-index) * 0.22s);
}

.visual-strip-item-large {
  --visual-strip-end-y: 0;
  --visual-strip-start-y: 40px;
  height: 373px;
  width: 100%;
}

.visual-strip-item-large img {
  object-position: center 55%;
}

.visual-strip-item-small {
  --visual-strip-end-y: 0;
  --visual-strip-start-y: 40px;
  height: 337px;
  margin-top: 160px;
  width: 100%;
}

@keyframes visual-strip-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(var(--visual-strip-end-y, 0));
  }
}

.section-dark {
  color: #111;
  overflow: visible;
  position: relative;
  transition: color 0.5s ease;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark.is-dark-visible {
  color: #fff;
}

.service {
  overflow: visible;
  padding: 130px 0 200px;
}

.service-intro {
  opacity: 1;
  overflow: hidden;
  padding-bottom: 250px;
  position: sticky;
  top: 120px;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  z-index: 1;
}

.service-intro.is-lifted {
  transform: translateY(-120px);
}

.service-intro .label {
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
}

.service-list {
  margin: 0 auto;
  width: var(--container);
}

.service-intro h2 {
  animation: service-title-flow 26s linear infinite;
  color: inherit;
  display: flex;
  font-family: var(--font-en);
  font-size: 130px;
  letter-spacing: 0;
  line-height: 1.16;
  margin-top: 22px;
  max-width: none;
  transform: translateX(0);
  transition: color 0.35s ease;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
}

.service-intro.is-overlapped h2 {
  color: #3c4f7f;
}

.service-intro h2 span {
  flex: 0 0 auto;
  padding-right: 0.50em;
}

@keyframes service-title-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-list {
  --service-image-height: 470px;
  --service-image-top: max(150px, calc((100vh - var(--service-image-height)) / 2));
  display: block;
  margin-top: 100px;
  min-height: 0;
  position: relative;
}

.service-snap-points {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.service-snap-points span {
  display: block;
  height: 1px;
  scroll-margin-top: var(--service-image-top);
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.service-snap-points span:first-child {
  display: none;
  margin-top: 0;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.service-snap-points span + span {
  margin-top: calc(var(--service-image-top) + 40vh);
}

.service-card-track {
  display: grid;
  gap: 300px;
}

.service-card {
  align-items: flex-start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(300px, 470px) minmax(420px, 600px);
  min-height: 0;
  opacity: 0;
  pointer-events: auto;
  position: relative;
  transform: translateY(32px);
}

.service-card.is-before {
  transform: none;
}

.service-card.is-after {
  transform: none;
}

.service-card.is-active {
  pointer-events: auto;
}

.service-card.is-visible {
  animation: fade-in-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform: none;
}

.service-card-text {
  padding-top: 38px;
  width: 470px;
}

.service-card-mobile-image {
  border-radius: 8px;
  display: block;
  height: 530px;
  overflow: hidden;
  position: relative;
}

.service-card-mobile-image-overlap {
  height: 530px;
  overflow: visible;
}

.service-card-mobile-image > img,
.service-card-mobile-image .service-card-image-box img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-number {
  color: #82B5B0;
  font-family: var(--font-en);
  font-size: 12px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.service-card-text > p:not(.service-number) {
  color: rgba(0, 0, 0, 0.76);
  font-size: 16px;
  line-height: 2;
  width: 400px;
}

.section-dark.is-dark-visible .service-card-text > p:not(.service-number) {
  color: rgba(255, 255, 255, 0.76);
}

.dark-button {
  color: #000;
  margin-top: 36px;
  min-width: 260px;
  padding-right: 20px;
}

.section-dark.is-dark-visible .dark-button {
  color: #fff;
}

.section-dark.is-dark-visible .dark-button::before {
  background: #fff;
}

.section-dark.is-dark-visible .dark-button:hover {
  color: #000;
}

.section-dark.is-dark-visible .dark-button span {
  background: #fff;
}

.section-dark.is-dark-visible .dark-button span::before {
  background: #000;
}

.section-dark.is-dark-visible .dark-button span::after {
  border-color: #000;
}

.section-dark.is-dark-visible .dark-button:hover span {
  background: #000;
}

.section-dark.is-dark-visible .dark-button:hover span::before {
  background: #fff;
}

.section-dark.is-dark-visible .dark-button:hover span::after {
  border-color: #fff;
}

.service-card-image-stage {
  display: none;
}

.service-card-image-stage::before {
  background: url("img/circle.webp") center / contain no-repeat;
  content: "";
  height: 160px;
  left: -76px;
  pointer-events: none;
  position: absolute;
  top: -78px;
  width: 160px;
  z-index: 0;
}

.service-card-image {
  --service-image-y: 0;
  border-radius: 8px;
  height: 426px;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateY(var(--service-image-y)) translateX(104px) scale(0.96);
  transition: opacity 0.9s ease, transform 1.8s cubic-bezier(0.12, 0.82, 0.18, 1);
  will-change: opacity, transform;
  width: 100%;
  z-index: 1;
}

.service-card-image > img,
.service-card-image-box img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-card-image[data-service-image="1"] > img {
  object-position: center 0%;
}

.service-card-image-overlap {
  --service-image-y: 0;
  height: 470px;
  overflow: visible;
  top: 0;
}

.service-card-image.is-active {
  opacity: 1;
  transform: translateY(var(--service-image-y)) translateX(0) scale(1);
}

.service-card-image-number {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  left: 16px;
  line-height: 1;
  position: absolute;
  top: 16px;
  z-index: 2;
}

.service-card-image-box {
  border-radius: 8px;
  overflow: hidden;
}

.service-card-image-box-main {
  height: 430px;
  width: 486px;
}

.service-card-image-box-sub {
  bottom: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  height: 360px;
  position: absolute;
  right: -50px;
  width: 328px;
}

.contact {
  align-items: center;
  display: flex;
  min-height: 10vh;
  margin-top: 0;
  opacity: 1;
  padding: 72px 0 148px;
  pointer-events: auto;
  position: relative;
  z-index: 4;
}

.service-detail .contact {
  margin-top: 0;
  min-height: auto;
  padding: 96px 0 120px;
  pointer-events: auto;
}

.service-detail .contact .contact-box {
  opacity: 1;
  pointer-events: auto;
}

.contact .contact-box {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.62s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact.is-visible .contact-box {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 44px 40px 92px;
  width: var(--container);
}

.contact-box .label {
  margin-bottom: 60px;
}

.contact-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-row h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.6;
}

.contact-button {
  min-width: 320px;
}

.site-footer {
  padding: 40px 76px 24px;
}

.footer-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-company a {
  display: inline-block;
}

.footer-company img {
  margin-bottom: 28px;
  width: 250px;
}

.footer-company p {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 12px;
}

.footer-nav {
  align-items: flex-start;
  display: flex;
  gap: 40px;
}

.footer-nav-group + a {
  margin-left: -16px;
}

.footer-nav > a,
.footer-nav-group > a {
  display: grid;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  line-height: 1.4;
}

.footer-nav a {
  transition: opacity 0.24s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 0.62;
}

.footer-nav span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
}

.footer-nav-sub {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.footer-nav-sub a {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  gap: 4px;
}

.footer-nav-sub a::before {
  background: #b8b8b8;
  content: "";
  height: 1px;
  width: 8px;
}

.footer-message {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 64px 0 40px;
}

.footer-message-copy {
  align-items: flex-end;
  display: flex;
  gap: 40px;
}

.footer-message-copy > p:first-child {
  --footer-copy-size: 100px;
  color: #2b2929;
  font-family: var(--font-en);
  font-size: var(--footer-copy-size);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.footer-copy-word {
  display: block;
  font-size: 0;
  overflow: hidden;
}

.footer-copy-char {
  display: inline-block;
  font-size: var(--footer-copy-size);
  opacity: 0;
  transform: translateY(105%);
}

.footer-message-copy.is-visible .footer-copy-char {
  animation: hero-copy-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.18s + var(--char-index) * 0.055s);
}

.footer-copy-dot-purple {
  color: #BAB1CF;
}

.footer-copy-dot-green {
  color: #8DBDB6;
}

.footer-copy-dot-blue {
  color: #99BBDA;
}

.footer-message-copy > p:last-child {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}

.association-link {
  align-items: center;
  background: #fff;
  border: 1px solid #cacaca;
  border-radius: 4px;
  display: flex;
  min-height: 86px;
  padding: 12px;
  position: relative;
  width: 250px;
}

.association-link::after {
  background: url("img/external.svg") center / contain no-repeat;
  content: "";
  height: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #cfcfcf;
  color: #555;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding-top: 16px;
}

.footer-bottom a {
  color: #111;
}

.service-detail {
  padding-top: 131px;
}

.service-detail-hero,
.business-intro,
.support-system {
  margin: 0 auto;
  width: var(--container);
}

.service-detail-hero {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 168px;
  padding: 140px 0 32px;
}

.service-detail-label {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 32px;
}

.service-detail-heading h1 {
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
}

.breadcrumb {
  align-items: center;
  align-self: flex-end;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.04em;
}

.breadcrumb span[aria-hidden] {
  background: #111;
  height: 1px;
  width: 20px;
}

.breadcrumb span:last-child {
  color: #777;
}

.business-hero-visual {
  border-radius: 8px;
  display: block;
  height: 500px;
  margin: 0 auto;
  max-width: 1380px;
  overflow: hidden;
  width: calc(100vw - 60px);
}

.business-hero-image {
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.business-hero-image picture {
  display: block;
  height: 100%;
}

.business-hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  width: 100%;
}

.business-intro {
  align-items: flex-start;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(320px, 600px) minmax(360px, 500px);
  padding: 100px 0;
}

.business-intro h2 {
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.5;
}

.business-intro-text {
  font-size: 16px;
  line-height: 2;
}

.business-intro-text p {
  line-height: inherit;
}

.business-intro-text p + p {
  margin-top: 20px;
}

.career-program {
  color: #fff;
  padding: 100px 0 116px;
  background: #173261e6;
  border-radius: 32px 32px 0 0;
}

.career-program-inner {
  margin: 0 auto;

  text-align: center;
  width: min(1100px, calc(100vw - 48px));
}

.service-section-heading {
  --service-section-color: #000;
  color: var(--service-section-color);
  text-align: center;
}

.service-section-heading-white {
  --service-section-color: #fff;
}

.service-section-heading-black {
  --service-section-color: #000;
}

.service-section-kicker {
  align-items: center;
  color: var(--service-section-color);
  display: flex;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 32px;
}

.service-section-kicker span {
  background: #BBB2D3;
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}

.service-section-heading h2 {
  color: var(--service-section-color);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.5;
}

.service-section-lead {
  color: var(--service-section-color);
  font-size: 16px;
  line-height: 2;
  margin: 36px auto 40px;
}

.program-grid {
  background: #21365a;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 40px;
  text-align: left;
}

.program-card {
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  padding: 24px;
  transform: translateY(32px);
}

.program-grid.is-visible .program-card {
  animation: fade-in-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--program-card-index) * 0.16s);
}

.program-card h3 {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 20px;
  gap: 12px;
  justify-content: center;
  line-height: 1.5;
  margin-bottom: 12px;
}

.support-card-heading {
  margin-bottom: 12px;
}

.program-card h3 span {
  color: #fff;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 500;
}

.program-card p {
  font-size: 16px;
  line-height: 1.8;
}

.support-model-comparison {
  background: #173261e6;
  color: #fff;
  padding: 0 0 116px;
}

.support-model-comparison-inner {
  margin: 0 auto;
  width: min(1100px, calc(100vw - 48px));
}

.support-model-comparison-lead {
  font-size: 16px;
  line-height: 2;
  margin: 36px auto 40px;
  max-width: 960px;
}

.support-model-comparison-lead p + p {
  margin-top: 20px;
}

.support-model-scroll-guide {
  display: none;
}

.support-model-table-wrap {
  padding-top: 24px;
  overflow-x: auto;
}

.support-model-table-container {
  min-width: 720px;
  position: relative;
}

.support-model-balloon {
  background: #2854a1;
  border: 1px solid #fff;
  border-radius: 999px;
  top: -22px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  left: 75%;
  line-height: 1;
  padding: 10px 22px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.support-model-balloon::before,
.support-model-balloon::after {
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.support-model-balloon::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
  top: 100%;
}

.support-model-balloon::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #2854a1;
  top: calc(100% - 2px);
}

.support-model-table {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  width: 100%;
}

.support-model-table th,
.support-model-table td {
  border-bottom: 1px solid #d9d9d9;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}
.support-model-table th {
  padding: 24px;
}
.support-model-table td {
  padding: 16px;
}

.support-model-table th + th,
.support-model-table td + td {
  border-left: 1px solid #d9d9d9;
}

.support-model-table th {
  background: #f4f4f4;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.support-model-table td {
  color: #777;
  font-size: 18px;
  font-weight: 700;
}

.support-model-table th:first-child,
.support-model-table td:first-child {
  width: 50%;
}

.support-model-table th:last-child {
  background: #e9eef6;
  color: #173261;
}

.support-model-table td:last-child {
  color: #2854a1;
  font-size: 18px;
}

.support-model-note {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.support-system {
  padding: 100px 0 60px;
}

.support-block,
.manager-block {
  margin-top: 100px;
}

.support-block-heading {
  align-items: center;
  border-bottom: 1px solid #999;
  display: flex;
  gap: 8px;
  padding-bottom: 12px;
}

.support-block-heading span {
  background: #bcb2d3;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.support-block-heading h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.support-flow {
  display: grid;
  margin-top: 24px;
}

.support-flow-three {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.support-flow-arrow {
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: center;
  width: 32px;
}

.support-flow-arrow img {
  display: block;
  height: 15px;
  width: 8px;
}

.operational-flow .support-flow-arrow::before {
  background: #ccc;
  content: "";
  display: block;
  height: 15px;
  mask: url("img/arrow.svg") center / contain no-repeat;
  width: 8px;
}

.operational-flow .support-flow-arrow img {
  display: none;
}

.support-flow-two {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.support-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  opacity: 0;
  padding:20px;
  text-align: center;
  transform: translateY(32px);
}

.support-flow.is-visible .support-card {
  animation: fade-in-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--support-card-index) * 0.16s);
  border: 0.8px solid #ccc;
}

.support-card-icon {
  align-self: center;
  flex: 0 0 auto;
  height: 80px;
  margin-bottom: 16px;
}

.support-card-icon img {
  display: block;
  height: 80px;
  width: auto;
}

.expert-box .support-card-icon img {
  margin: 0 auto;
}

.support-card h4 {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 20px;
  gap: 12px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.4;
}

.support-card h4 span {
  color: #000;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 500;
}

.support-card p {
  color: #000;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

/*.support-card strong {
  color: #ff2a2a;
}*/

.expert-box {
  background: #fff;
  margin-top: 24px;
  padding: 36px 20px;
  text-align: center;
}

.support-plus {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin: 16px 0 -8px;
  text-align: center;
}

.cloud-title-break {
  display: none;
}

.expert-box h4 {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 600;
}

.expert-box p {
  font-size: 16px;
  line-height: 1.75;
  margin: 12px auto;
  max-width: 670px;
}

.expert-tags {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.expert-tags span {
  align-items: center;
  background: #806ea9;
  color: #fff;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  min-width: 164px;
  padding: 0 20px;
}

.expert-tags small {
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
}

.support-block-company {
  width: min(1100px, 100%);
}

.manager-list {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.manager-card {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 194px minmax(0, 1fr);
}

.manager-photo {
  background: #d9d9d9;
  height: 259px;
  overflow: hidden;
}

.manager-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.manager-photo img.manager-photo-crop {
  transform: translateX(26px) scale(1.4);
  transform-origin: center center;
}

.manager-card h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.manager-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.operational-hero-visual {
  border-radius: 8px;
  height: 500px;
  margin: 0 auto;
  max-width: 1380px;
  overflow: hidden;
  width: calc(100vw - 60px);
}

.operational-hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  width: 100%;
}

.operational-role-inner {
  text-align: center;
}

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

.operational-workflow {
  margin-top: 40px;
  text-align: left;
}

.support-block-heading-white {
  border-bottom-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.operational-flow {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.operational-flow .support-card {
  min-height: 280px;
}

.operational-system {
  padding-bottom: 40px;
}

.operational-detail-list {
  display: grid;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.operational-detail-list article {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 288px;
  padding: 36px 34px;
  border: 0.8px solid #ccc;
}

.operational-detail-text {
  max-width: 480px;
}

.operational-detail-company {
  align-items: center;
  border-bottom: 1px solid #b7b7b7;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 6px;
}

.operational-detail-company span {
  background: #b9addd;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.operational-detail-list h3 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.operational-detail-list p {
  font-size: 16px;
  line-height: 1.9;
}

.operational-detail-list .operational-detail-company {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.operational-detail-image {
  justify-self: stretch;
}

.operational-detail-image img {
  margin-left: auto;
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.operational-detail-certified {
  align-items: center;
  background: #fff;
  border-radius: 4px;
  display: inline-flex;
  font-size: 20px;
  font-weight: 700;
  gap: 12px;
  justify-self: center;
  line-height: 1.5;
  margin: 34px 0 32px;
  padding: 8px 32px;
  position: relative;
}

.operational-detail-certified::before,
.operational-detail-certified::after {
  border-left: 1px dashed #333;
  content: "";
  height: 30px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.operational-detail-certified::before {
  bottom: 100%;
}

.operational-detail-certified::after {
  top: 100%;
}

.operational-detail-certified img {
  height: 24px;
  width: 24px;
}

.association-cta {
  align-items: center;
  background: #badcfb;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
  padding: 40px;
}

.association-cta h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.association-cta p {
  font-size: 16px;
  line-height: 1.75;
}

.association-cta-action {
  flex: 0 0 auto;
  text-align: center;
}

.association-cta-action .text-button span {
  background: url("img/external.svg") center / 14px 14px no-repeat;
  height: 22px;
  width: 32px;
}

.association-cta-action .text-button span::before,
.association-cta-action .text-button span::after {
  display: none;
}

.association-cta-action .text-button:hover span {
  background-color: #fff;
}

.association-cta-action small {
  color: #444;
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
}



.company-overview {
  background: #fff;
  margin: 0 auto 44px;
  padding: 40px;
  width: var(--container);
}

.company-overview .support-block-heading h2 {
  font-size: 20px;
  line-height: 1;
}

.company-table {
  margin-top: 20px;
}

.company-table > div {
  border-bottom: 1px solid #eee;
  display: grid;
  gap: 36px;
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 20px 0;
}

.company-table dt,
.company-table dd {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.company-table dt {
  font-weight: 700;
}

.company-association-logo {
  margin-bottom: 16px;
  mix-blend-mode: multiply;
  width: 177px;
}

.company-table dd p {
  font-size: 12px;
  line-height: 1.7;
}

.contact-page-hero {
  padding-bottom: 0;
}

.contact-thanks-hero {
  align-items: center;
  gap: 0;
  text-align: center;
      margin-bottom: 32px;
}

.contact-form-section {
  margin: 0 auto 44px;
  padding: 0 0 0;
  width: var(--container);
}

.contact-form-lead {
  font-size: 16px;
  line-height: 2.25;
  margin-bottom: 40px;
  width: min(620px, 100%);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-shortcode .contact-form {
  width: 100%;
}

.contact-form-shortcode .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-shortcode .wpcf7 p {
  margin: 0;
}

.contact-form-shortcode .wpcf7 br {
  display: none;
}

.contact-form-shortcode .wpcf7 label {
  display: unset;
  font-size: 14px;
  gap: 4px;
  line-height: 1.5;
}

.contact-form-shortcode .wpcf7-form-control-wrap {
  display: block;
}

.form-field {
  display: grid;
  gap: 4px;
  width: 100%;
}

.form-field label {
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-shortcode .form-field > label {
  align-items: center;
  display: flex;
  gap: 0;
  justify-self: start;
  white-space: nowrap;
  width: max-content;
}

.form-field .wpcf7-form-control-wrap {
  min-width: 0;
}

.form-field label span {
  color: #f00;
  display: inline-block;
  line-height: inherit;
  margin-left: -0.25em;
}

.form-field input,
.form-field textarea,
.contact-form-shortcode .wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-form-shortcode .wpcf7 select,
.contact-form-shortcode .wpcf7 textarea {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 0;
  font: inherit;
  min-height: 40px;
  padding: 8px 12px;
  width: 100%;
}

.contact-form-shortcode .wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-form-shortcode .wpcf7 select,
.contact-form-shortcode .wpcf7 textarea {
  display: block;
}

.form-field textarea,
.contact-form-shortcode .wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form-shortcode .wpcf7-list-item {
  margin-left: 0;
}

.contact-form-shortcode .wpcf7-acceptance .wpcf7-list-item {
  display: block;
}

.contact-form-shortcode .wpcf7-acceptance label {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.contact-form-shortcode .wpcf7-list-item-label {
  display: inline-block;
}

.contact-form-shortcode .wpcf7 input[type="checkbox"],
.contact-form-shortcode .wpcf7 input[type="radio"] {
  flex: 0 0 auto;
  accent-color: #111;
  height: 20px;
  width: 20px;
}

.contact-form-shortcode .wpcf7 p:has(.wpcf7-submit) {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 0;
  position: relative;
}

.contact-form-shortcode .wpcf7-submit {
  align-items: center;
  background: transparent;
  border: 1px solid currentColor;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  height: 66px;
  justify-content: center;
  letter-spacing: 0.04em;
  margin: 0;
  min-width: 260px;
  padding: 0 68px 0 20px;
  transition: background 0.28s ease, color 0.28s ease;
  width: 260px;
}

.contact-form-shortcode .wpcf7 .form-submit {
  gap: 0;
  overflow: visible;
  position: static;
  z-index: auto;
}

.contact-form-shortcode .wpcf7 p:has(.wpcf7-submit)::after {
  background: #111 url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E") center / 16px 8px no-repeat;
  content: "";
  height: 22px;
  left: calc(50% + 78px);
  pointer-events: none;
  position: absolute;
  top: 22px;
  transition: background-color 0.28s ease;
  width: 32px;
}

.contact-form-shortcode .wpcf7-submit:hover {
  background: #111;
  color: #fff;
}

.contact-form-shortcode .wpcf7 p:has(.wpcf7-submit:hover)::after {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E");
}

.contact-form-shortcode .wpcf7-spinner {
  display: block;
  flex-basis: 100%;
  margin: 12px auto 0;
}

.privacy-confirm {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 44px auto 0;
  text-align: center;
}

.privacy-confirm p,
.privacy-confirm label {
  color: #051412;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
}

.privacy-confirm a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-confirm label {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.privacy-confirm .wpcf7-form-control-wrap,
.privacy-confirm .wpcf7-acceptance {
  display: inline-block;
}

.privacy-confirm .wpcf7-acceptance label {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.privacy-confirm input {
  accent-color: #111;
  height: 20px;
  width: 20px;
}

.form-submit {
  align-items: center;
  background: transparent;
  border: 1px solid currentColor;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  gap: 20px;
  height: 66px;
  justify-content: center;
  letter-spacing: 0.04em;
  margin: 0 auto;
  min-width: 260px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  transition: color 0.28s ease;
  z-index: 0;
}

.form-submit::before {
  background: #111;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
  z-index: -1;
}

.form-submit span {
  align-items: center;
  background: #111;
  display: flex;
  height: 22px;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 32px;
}

.form-submit span::before {
  background: #fff;
  content: "";
  height: 1px;
  position: absolute;
  width: 12px;
}

.form-submit span::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  height: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
}

.form-submit:hover {
  color: #fff;
}

.form-submit:hover::before {
  transform: scaleX(1);
}

.form-submit:hover span {
  background: #fff;
}

.form-submit:hover span::before {
  background: #111;
}

.form-submit:hover span::after {
  border-color: #111;
}

.confirm-list {
  background: #fff;
  margin-bottom: 44px;
  margin-top: 20px;
  padding:40px;
}

.confirm-list > div {
  align-items: center;
  border-bottom: 1px solid #eee;
  display: grid;
  gap: 36px;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 0;
  padding: 10px 0;
}

.confirm-list > div:first-child {
  padding-top: 0;
}

.confirm-list > div:last-child {
  padding-bottom: 0;
}

.confirm-list dt,
.confirm-list dd {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin: 0;
}

.confirm-list dt {
  font-weight: 700;
  white-space: nowrap;
}

.confirm-list dd {
  white-space: pre-wrap;
}

.confirm-list dt p,
.confirm-list dd p {
  line-height: inherit;
  margin: 0;
}

.confirm-list dd p + p {
  margin-top: 0.4em;
}

.confirm-list > div:has(dd br),
.confirm-list > div:last-child {
  align-items: flex-start;
}

.contact-form__row__body {
  background: #fff;
  margin: 20px 0 44px;
  padding: 40px;
}

.contact-form__row {
  display: grid;
  gap: 36px;
  grid-template-columns: 150px minmax(0, 1fr);
}

.contact-form__row--confirm {
  align-items: center;
  border-bottom: 1px solid #eee;
  height: 80px;
  padding: 0;
}

.contact-form__row--confirm:first-child {
  padding-top: 0;
}

.contact-form__row--confirm:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-form__row--textarea {
  align-items: center;
  height: auto;
  min-height: 80px;
  padding: 18px 0;
}

.contact-form__label,
.confirm-form__value {
  align-self: center;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
  height: 100%;
}

.contact-form__label {
  display: flex;
  align-items: center;
  font-weight: 700;
  min-height: 1.2em;
  white-space: nowrap;
}

.confirm-form__value {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 1.2em;
  white-space: normal;
  word-break: break-word;
}

.contact-form__row--textarea .contact-form__label,
.contact-form__row--textarea .confirm-form__value {
  align-self: center;
  height: auto;
}

.contact-form__row--textarea .confirm-form__value {
  display: flex;
}

.confirm-form__value--multiline {
  white-space: pre-wrap;
}

.confirm-form__value p {
  display: flex;
  align-items: center;
  line-height: inherit;
  margin: 0 !important;
  padding: 0;
}

.confirm-form__value > * {
  margin-bottom: 0;
  margin-top: 0;
}

.confirm-form__value p + p {
  margin-top: 0.4em;
}

.confirm-form__value br {
  display: initial;
}

.contact-form-shortcode .wpcf7 .confirm-form__value br {
  display: initial;
}

.confirm-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.confirm-actions p {
  display: contents;
  margin: 0;
}

.confirm-actions .form-submit {
  background-color: transparent;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: right 28px center, right 20px center;
  background-repeat: no-repeat;
  background-size: 16px 8px, 32px 22px;
  margin: 0;
  padding: 0 68px 0 20px;
  width: 260px;
}

.confirm-actions .form-submit:hover {
  background-color: #111;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
}

.confirm-actions p:has(.wpcf7-submit)::after {
  display: none;
}

.confirm-actions .wpcf7-spinner {
  flex-basis: 100%;
  margin: 12px auto 0;
}

.confirm-form__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.confirm-form__actions p {
  display: contents;
  margin: 0;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions p {
  display: contents;
  margin: 0;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions p:has(.wpcf7-submit)::after {
  display: none;
}

.confirm-form__actions .btn,
.confirm-form__actions .wpcf7-previous,
.confirm-form__actions input[type="button"] {
  align-items: center;
  background-color: transparent;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: right 28px center, right 20px center;
  background-repeat: no-repeat;
  background-size: 16px 8px, 32px 22px;
  border: 1px solid currentColor;
  color: #111;
  cursor: pointer;
  display: inline-flex !important;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  height: 66px;
  justify-content: center;
  letter-spacing: 0.04em;
  margin: 0;
  min-width: 260px;
  padding: 0 68px 0 20px;
  transition: background-color 0.28s ease, color 0.28s ease;
  visibility: visible;
  width: 260px;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions input.btn,
.contact-form-shortcode .wpcf7 .confirm-form__actions button.btn,
.contact-form-shortcode .wpcf7 .confirm-form__actions input.wpcf7-previous,
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="button"] {
  min-height: 0;
}

.confirm-form__actions .btn:hover,
.confirm-form__actions .wpcf7-previous:hover,
.confirm-form__actions input[type="button"]:hover {
  background-color: #111;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
  color: #fff;
}

.confirm-form__actions .confirm-form__back {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: left 28px center, left 20px center;
  padding: 0 20px 0 68px;
}

.confirm-form__actions .wpcf7-previous,
.confirm-form__actions input[type="button"] {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: left 28px center, left 20px center;
  padding: 0 20px 0 68px;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions input.confirm-form__back,
.contact-form-shortcode .wpcf7 .confirm-form__actions button.confirm-form__back,
.contact-form-shortcode .wpcf7 .confirm-form__actions input.wpcf7-previous,
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="button"] {
  padding: 0 20px 0 68px;
}

.confirm-form__actions .confirm-form__back:hover,
.confirm-form__actions .wpcf7-previous:hover,
.confirm-form__actions input[type="button"]:hover {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
}

.confirm-form__actions .wpcf7-spinner {
  flex-basis: 100%;
  margin: 12px auto 0;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions input.btn,
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="button"],
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="submit"] {
  appearance: none;
  align-items: center;
  background-color: transparent;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: right 28px center, right 20px center;
  background-repeat: no-repeat;
  background-size: 16px 8px, 32px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  color: #111;
  cursor: pointer;
  display: inline-flex !important;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  height: 66px;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
  min-height: 0;
  min-width: 260px;
  padding: 0 68px 0 20px;
  text-align: center;
  transition: background-color 0.28s ease, color 0.28s ease;
  visibility: visible;
  width: 260px;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions input.confirm-form__back,
.contact-form-shortcode .wpcf7 .confirm-form__actions input.wpcf7-previous,
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="button"] {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: left 28px center, left 20px center;
  padding: 0 20px 0 68px;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions input.btn:hover,
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="submit"]:hover {
  background-color: #111;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
  color: #fff;
}

.contact-form-shortcode .wpcf7 .confirm-form__actions input.confirm-form__back:hover,
.contact-form-shortcode .wpcf7 .confirm-form__actions input.wpcf7-previous:hover,
.contact-form-shortcode .wpcf7 .confirm-form__actions input[type="button"]:hover {
  background-color: #111;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
  color: #fff;
}

.contact-page .contact-form-shortcode input.btn,
.contact-page .contact-form-shortcode input.btn--outline,
.contact-page .contact-form-shortcode input.btn--wide,
.contact-page .contact-form-shortcode input.confirm-form__back,
.contact-page .contact-form-shortcode input.wpcf7-previous {
  appearance: none;
  background-color: transparent;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: right 28px center, right 20px center;
  background-repeat: no-repeat;
  background-size: 16px 8px, 32px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  color: #111;
  cursor: pointer;
  display: inline-block !important;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  height: 66px;
  letter-spacing: 0.04em;
  line-height: 64px;
  margin: 0;
  min-height: 0;
  min-width: 260px;
  padding: 0 68px 0 20px;
  text-align: center;
  visibility: visible;
  width: 260px;
}

.contact-page .contact-form-shortcode input.confirm-form__back,
.contact-page .contact-form-shortcode input.wpcf7-previous,
.contact-page .contact-form-shortcode input[type="button"].btn {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: left 28px center, left 20px center;
  padding: 0 20px 0 68px;
}

.contact-page .contact-form-shortcode input.btn:hover,
.contact-page .contact-form-shortcode input.btn--outline:hover,
.contact-page .contact-form-shortcode input.btn--wide:hover {
  background-color: #111;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
  color: #fff;
}

.contact-page .contact-form-shortcode input.confirm-form__back:hover,
.contact-page .contact-form-shortcode input.wpcf7-previous:hover,
.contact-page .contact-form-shortcode input[type="button"].btn:hover {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
}

.form-submit-secondary {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111);
  background-position: left 28px center, left 20px center;
  padding: 0 20px 0 68px;
}

.confirm-actions .form-submit-secondary:hover {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff);
}

.form-submit-secondary span::after {
  left: 10px;
  right: auto;
  transform: translateY(-50%) rotate(225deg);
}

.contact-complete-section {
  min-height: 360px;
  text-align: center;
}

.contact-complete-section .contact-form-lead {
  margin-left: auto;
  margin-right: auto;
}

.privacy-page-hero {
  padding-bottom: 96px;
}

.policy-content {
  margin: 0 auto 80px;
  padding: 0 0 56px;
  width: var(--container);
}

.policy-lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 48px;
}

.policy-content article {
  padding: 16px 0;
}



.policy-content h2 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.policy-content h3 {
  font-size: 16px;
  line-height: 2;
  margin: 18px 0 6px;
}

.policy-content p,
.policy-content li {
  font-size: 16px;
  line-height: 2;
}

.policy-content p + p,
.policy-content ul + p {
  margin-top: 12px;
}

.policy-content p + ul {
  margin-top: 6px;
}

.policy-content ul {
  display: grid;
  gap: 4px;
  list-style: disc;
  padding-left: 1.4em;
}

@media (max-width: 1024px) {
  :root {
    --container: min(920px, calc(100vw - 40px));
  }

  body::before {
    inset: -8px 0;
  }

  .site-header {
    align-items: flex-start;
    padding: 22px 20px;
  }

  .site-logo {
    width: clamp(170px, 26vw, 240px);
  }

  .global-nav {
    gap: 18px;
    max-width: calc(100vw - 270px);
    right: 20px;
    top: 22px;
  }

  .nav-service-menu {
    left: auto;
    right: 0;
    transform: translateY(8px);
  }

  .nav-service-menu::before {
    left: auto;
    right: 28px;
    transform: rotate(45deg);
  }

  .nav-service.is-open .nav-service-menu {
    transform: translateY(0);
  }

  .nav-contact {
    min-width: 172px;
  }

  .hero {
    min-height: 720px;
    padding: 132px 20px 0;
  }

  .hero-image {
    height: 560px;
  }

  .hero-message {
    right: 56px;
    top: 92px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-photo-left,
  .about-photo-right {
    display: none;
  }

  .visual-strip {
    display: block;
    height: 420px;
    position: relative;
  }

  .visual-strip-item-large,
  .visual-strip-item-small {
    position: absolute;
  }

  .visual-strip-item-large {
    height: 270px;
    left: 0;
    top: 0;
    width: min(76%, 620px);
    z-index: 1;
  }

  .visual-strip-item-small {
    height: 250px;
    margin-top: 0;
    right: 0;
    top: 150px;
    width: min(52%, 430px);
    z-index: 2;
  }

  .visual-strip img {
    height: calc(100% + 56px);
    width: 100%;
  }

  .service-intro {
    padding-bottom: 250px;
    position: sticky;
    top: 120px;
    transform: none;
  }

  .service-intro.is-lifted {
    transform: none;
  }

  .service-intro .label-white {
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .service-intro.is-overlapped .label-white {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
  }

  .service-list {
    display: block;
    margin-top: 80px;
    min-height: 0;
    padding-bottom: 0;
  }

  .service-card-text,
  .service-card-text > p:not(.service-number) {
    width: 100%;
  }

  .service-card-text > p br {
    display: none;
  }

  .service-card-text {
    order: 2;
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-card .dark-button {
    min-width: 0;
    width: 100%;
  }

  .service-card-track {
    display: grid;
    gap: 240px;
    height: auto;
    position: static;
  }

  .service-snap-points {
    display: none;
  }

  .service-card-image-stage {
    display: none;
  }

  .service-card-image-box-sub {
    right: 0;
  }

  .service-card-image {
    display: none;
  }

  .service-card {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    inset: auto;
    opacity: 0;
    pointer-events: auto;
    position: relative;
    transform: translateY(32px);
    transition: none;
  }

  .service-card.is-before {
    transform: none;
  }

  .service-card.is-after {
    transform: none;
  }

  .service-card.is-active {
    pointer-events: auto;
  }

  .service-card-mobile-image {
    border-radius: 8px;
    display: block;
    height: 280px;
    margin: 0 0 40px;
    order: 1;
    overflow: hidden;
    position: relative;
  }

  .service-card-mobile-image > img,
  .service-card-mobile-image .service-card-image-box img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .service-card-mobile-image > img,
  .service-card-mobile-image .service-card-image-box-main img {
    object-position: center 16%;
  }

  .service-card-mobile-image-overlap {
    height: 310px;
    overflow: visible;
  }

  .service-card-mobile-image .service-card-image-box-main {
    height: 280px;
    width: 76%;
  }

  .service-card-mobile-image .service-card-image-box-sub {
    bottom: 0;
    height: 190px;
    right: 0;
    width: 58%;
  }

  .service-detail-hero {
    padding: 100px 0 96px;
  }

  .business-hero-visual {
    height: 260px;
    width: calc(100vw - 40px);
  }

  .operational-hero-visual {
    height: 260px;
    width: calc(100vw - 40px);
  }

  .business-intro {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .support-flow-three,
  .support-flow-two,
  .operational-flow {
    grid-template-columns: 1fr;
  }

  .support-flow-arrow {
    width: 100%;
  }

  .support-flow-arrow img {
    transform: rotate(90deg);
  }

  .operational-flow .support-flow-arrow::before {
    transform: rotate(90deg);
  }

  .manager-list {
    grid-template-columns: 1fr;
  }

  .operational-detail-list article {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
  }

  .operational-detail-text {
    max-width: none;
  }

  .operational-detail-image img {
    margin: 0 auto;
    max-height: none;
  }

  .association-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .company-overview {
    padding: 32px 28px;
  }

  .contact-form-section {
    padding-top: 80px;
  }

  .policy-content {
    padding-bottom: 48px;
  }

  .footer-message,
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
            gap: 36px;
  }
}

@media (max-width: 900px) {
  body.is-nav-open {
    overflow: hidden;
  }

  .site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    padding: 18px 16px;
  }

  .site-logo {
    width: min(58vw, 200px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .global-nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    box-sizing: border-box;
    color: #111;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 0;
    inset: 0;
    justify-content: center;
    max-width: none;
    mix-blend-mode: normal;
    opacity: 0;
    padding: 96px 24px 40px;
    pointer-events: none;
    right: auto;
    top: auto;
    transform: translateY(-18px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    visibility: hidden;
    white-space: normal;
    width: 100%;
  }

  body.is-nav-open .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .global-nav > a:not(.nav-contact),
  .nav-service-button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    justify-content: space-between;
    padding: 18px 0;
    width: 100%;
  }

  .nav-service {
    display: block;
  }

  .nav-service-button {
    font-size: inherit;
  }

  .nav-service-menu {
    background: transparent;
    border: 0;
    color: #111;
    display: grid;
    font-size: 14px;
    left: auto;
    max-height: 0;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: static;
    transform: none;
    transition: opacity 0.2s ease, max-height 0.2s ease;
  }

  .nav-service-menu::before {
    display: none;
  }

  .nav-service.is-open .nav-service-menu {
    max-height: 140px;
    opacity: 1;
    transform: none;
  }

  .nav-service-menu a {
    color: #111;
    overflow: hidden;
    padding: 10px 0 10px 16px;
  }

  .nav-service-menu a:hover,
  .nav-service-menu a:focus-visible {
    background: transparent;
  }

  .nav-contact {
    align-self: stretch;
    color: #111;
    font-size: 15px;
    height: 56px;
    margin-top: 24px;
    min-width: 0;
    padding: 0 18px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .site-header {
    gap: 16px;
    padding: 18px 16px;
  }

  .site-logo {
    width: min(58vw, 190px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .global-nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    box-sizing: border-box;
    color: #111;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 0;
    inset: 0;
    justify-content: center;
    max-width: none;
    mix-blend-mode: normal;
    opacity: 0;
    padding: 96px 24px 40px;
    pointer-events: none;
    right: auto;
    top: auto;
    transform: translateY(-18px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    visibility: hidden;
    white-space: normal;
    width: 100%;
  }

  body.is-nav-open .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .global-nav > a:not(.nav-contact),
  .nav-service-button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    justify-content: space-between;
    padding: 18px 0;
    width: 100%;
  }

  .nav-service {
    display: block;
  }

  .nav-service-button {
    font-size: inherit;
  }

  .nav-service-menu {
    background: transparent;
    border: 0;
    color: #111;
    display: grid;
    font-size: 14px;
    left: auto;
    max-height: 0;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: static;
    transform: none;
    transition: opacity 0.2s ease, max-height 0.2s ease;
  }

  .nav-service-menu::before {
    display: none;
  }

  .nav-service.is-open .nav-service-menu {
    max-height: 140px;
    opacity: 1;
    transform: none;
  }

  .nav-service-menu a {
    color: #111;
    overflow: hidden;
    padding: 10px 0 10px 16px;
  }

  .nav-service-menu a:hover,
  .nav-service-menu a:focus-visible {
    background: transparent;
  }

  .nav-contact {
    align-self: stretch;
    color: #111;
    font-size: 15px;
    height: 56px;
    margin-top: 24px;
    min-width: 0;
    padding: 0 18px;
    width: 100%;
  }

  .hero {
    min-height: 640px;
    padding: 112px 12px 0;
  }

  .hero-image {
    height: 470px;
  }

  .hero-copy {
    bottom: 32px;
    left: 16px;
  }

  .hero-message {
    gap: 6px;
    right: 20px;
    top: 92px;
  }

  .hero-message p {
    font-size: 18px;
    padding: 12px 9px;
  }

  .about {
    padding-bottom: 80px;
  }

  .about-heading {
    overflow: visible;
    padding: 86px 0 30px;
  }

  .about-heading::before {
    display: none;
  }

  .about-circles {
    height: min(420px, 92vw);
    top: -28px;
    width: min(360px, 78vw);
  }

  .about-circle-green {
    height: min(360px, 78vw);
    margin: calc(min(360px, 78vw) / -2) 0 0 calc(min(360px, 78vw) / -2);
    width: min(360px, 78vw);
  }

  .about-circle-purple {
    height: min(340px, 73vw);
    margin: calc(min(340px, 73vw) / -2) 0 0 calc(min(340px, 73vw) / -2);
    width: min(340px, 73vw);
  }

  .about-circle-blue {
    height: min(318px, 68vw);
    margin: calc(min(318px, 68vw) / -2) 0 0 calc(min(318px, 68vw) / -2);
    width: min(318px, 68vw);
  }

  .label {
    margin-bottom: 34px;
  }

  .about-content {
    margin-top: 48px;
    width: calc(100vw - 24px);
  }

  .about-text {
    font-size: 15px;
    line-height: 2.05;
  }

  .about-text br {
    display: none;
  }

  .about-text .text-button,
  .contact-button {
    min-width: 100%;
  }

  .visual-strip {
    display: block;
    height: auto;
    min-height: 390px;
    position: relative;
    width: calc(100vw - 24px);
  }

  .visual-strip-item-large {
    height: 245px;
    left: 0;
    top: 0;
    width: 78%;
  }

  .visual-strip-item-small {
    height: 230px;
    right: 0;
    top: 150px;
    width: 58%;
  }

  .visual-strip img {
    height: calc(100% + 48px);
    width: 100%;
  }

  .service-intro h2 {
    animation: service-title-flow 26s linear infinite;
    display: flex;
    transform: translateX(0);
    white-space: nowrap;
    will-change: transform;
    width: max-content;
  }

  .service {
    padding: 0 0 100px;
  }
  .visual-strip {
    margin: 0 auto 0px;
  }
  
  .service-list {
    margin-top: 56px;
    min-height: 0;
    padding-bottom: 0;
    --service-image-height: 240px;
    --service-image-top: 96px;
  }

  .service-card-track {
    display: grid;
    gap: 100px;
    height: auto;
    position: static;
    top: auto;
  }

  .service-card {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: auto;
    position: relative;
    transform: translateY(32px);
  }

  .service-card.is-before {
    transform: none;
  }

  .service-card.is-after {
    transform: none;
  }

  .service-card.is-active {
    pointer-events: auto;
    gap:0;
  }

  .service-card-text {
    order: 2;
    padding-top: 0;
  }

  .service-card .dark-button {
    min-width: 0;
    width: 100%;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card-image-stage {
    display: none;
  }

  .service-card-mobile-image {
    border-radius: 8px;
    display: block;
    height: 230px;
    margin: 0 auto 34px;
    order: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .service-card-mobile-image > img,
  .service-card-mobile-image .service-card-image-box img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .service-card-mobile-image-overlap {
    height: 250px;
    overflow: visible;
  }

  .service-card-mobile-image .service-card-image-box-main {
    height: 230px;
    width: 76%;
  }

  .service-card-mobile-image .service-card-image-box-sub {
    bottom: 0;
    height: 156px;
    right: 0;
    width: 58%;
  }

  .contact {
    padding: 72px 0;
  }

  .contact-box {
    padding: 32px 20px 54px;
  }

  .contact-row {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding: 36px 20px 20px;
  }

  .footer-nav,
  .footer-message-copy {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav-group + a {
    margin-left: 0;
    margin-top: -8px;
  }

  .footer-message {
    margin: 56px 0 36px;
  }

  .footer-message-copy {
    align-items: flex-start;
  }

  .footer-message-copy > p:first-child {
    --footer-copy-size: 60px;
  }

  .footer-message-copy > p:last-child {
    font-size: 16px;
    text-align: left;
  }

  .service-detail {
    padding-top: 92px;
  }

  .service-detail-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
    padding: 72px 0 64px;
  }

  .service-detail-label {
    margin-bottom: 20px;
  }

  .service-detail-heading h1 {
    line-height: 1.25;
  }

  .business-hero-visual {
    display: block;
    height: auto;
    width: calc(100vw - 24px);
  }

  .operational-hero-visual {
    height: 220px;
    width: calc(100vw - 24px);
  }

  .business-hero-image {
    height: 210px;
  }

  .business-hero-image img {
    height: 120%;
    object-position: center center;
  }

  .business-intro {
    padding: 64px 0;
  }

  .business-intro h2 br {
    display: none;
  }

  .career-program {
    padding: 20px 0 40px;
  }

  .support-model-comparison {
    padding: 32px 0 64px;
  }

  .support-model-comparison-inner {
    width: calc(100vw - 24px);
  }

  .support-model-comparison-lead {
    margin: 28px auto 32px;
  }

  .support-model-scroll-guide {
    color: #eee;
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    text-align: center;
  }

  .support-model-table-wrap {
    padding-top: 38px;
  }

  .support-model-balloon {
    top: -36px;
  }

  .support-model-table th,
  .support-model-table td {
    padding: 12px;
  }

  .support-model-table td {
    font-size: 16px;
}

  .service-detail .contact {
    padding: 40px 0 120px;

}

  .career-program-inner {
    padding: 28px 18px;
    width: calc(100vw - 24px);
  }

  .program-grid,
  .support-flow-three,
  .support-flow-two,
  .operational-role-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    padding: 8px;
  }

  .support-flow-arrow {
    width: 100%;
  }

  .support-flow-arrow img {
    transform: rotate(90deg);
  }

  .operational-flow .support-flow-arrow::before {
    transform: rotate(90deg);
  }

  .program-card,
  .support-card,
  .expert-box {
    padding: 22px 18px;
  }

  .support-system {
    padding: 72px 0 40px;
  }

  .support-card {
    min-height: auto;
  }

  .operational-flow .support-card {
    min-height: auto;
  }

  .support-card h4,
  .expert-box h4,
  .expert-tags span {
    font-size: 18px;
  }

  .cloud-title-break {
    display: block;
  }

  .expert-tags {
    align-items: stretch;
    flex-direction: column;
  }

  .expert-tags span {
    width: 100%;
  }

  .expert-tags small {
    line-height: 1.6;
    text-align: right;
  }

  .manager-card {
    align-items: flex-start;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .manager-photo {
    height: 150px;
  }

  .operational-detail-list article,
  .association-cta {
    padding: 24px 18px;
  }

  .operational-detail-list {
    margin-top: 36px;
  }

  .operational-detail-list article {
    gap: 24px;
  }

  .operational-detail-list h3 {
    font-size: 20px;
  }

  .operational-detail-company {
    align-items: flex-start;
  }

  .operational-detail-company span {
    margin-top: 7px;
  }

  .operational-detail-certified {
    font-size: 18px;
    margin: 30px 0 28px;
    padding: 8px 18px;
  }

  .operational-detail-certified::before,
  .operational-detail-certified::after {
    height: 26px;
  }

  .association-cta h3 {
    font-size: 20px;
  }

  .company-overview {
    padding: 28px 18px;
  }

  .company-table > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding-top: 64px;
  }

  .privacy-confirm {
    align-items: stretch;
  }

  .privacy-confirm label {
    align-items: flex-start;
    text-align: left;
  }

  .confirm-list > div {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .contact-form__row__body {
    padding: 28px 18px;
  }

  .contact-form__row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .contact-form__row--confirm {
    align-items: flex-start;
    padding: 18px 0;
  }

  .confirm-actions {
    align-items: center;
    flex-direction: column;
  }

  .confirm-form__actions {
    align-items: center;
    flex-direction: column;
  }

  .policy-content {
    padding-bottom: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* Confirm page: match the existing submit button design; back button only flips the arrow left. */
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.btn.btn--outline.btn--wide,
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.btn.btn--outline.btn--wide[type="button"],
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.btn.btn--outline.btn--wide[type="submit"] {
  appearance: none !important;
  background-color: transparent !important;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111) !important;
  background-position: right 28px center, right 20px center !important;
  background-repeat: no-repeat !important;
  background-size: 16px 8px, 32px 22px !important;
  border: 1px solid currentColor !important;
  border-radius: 0 !important;
  color: #111 !important;
  cursor: pointer !important;
  display: inline-block !important;
  font: inherit !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  height: 66px !important;
  letter-spacing: 0.04em !important;
  line-height: 64px !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 260px !important;
  padding: 0 68px 0 20px !important;
  text-align: center !important;
  transition: background-color 0.28s ease, color 0.28s ease !important;
  visibility: visible !important;
  width: 260px !important;
}

.contact-page .contact-form-shortcode .confirm-form__actions input.confirm-form__back.btn.btn--outline.btn--wide,
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-previous.btn.btn--outline.btn--wide,
.contact-page .contact-form-shortcode .confirm-form__actions input[type="button"].btn.btn--outline.btn--wide {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111) !important;
  background-position: calc(50% - 92px) center, calc(50% - 92px) center !important;
  padding: 0 20px 0 52px !important;
}

.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.btn.btn--outline.btn--wide:hover {
  background-color: #111 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M0%204H14M10%201L14%204L10%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff) !important;
  color: #fff !important;
}

.contact-page .contact-form-shortcode .confirm-form__actions input.confirm-form__back.btn.btn--outline.btn--wide:hover,
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-previous.btn.btn--outline.btn--wide:hover,
.contact-page .contact-form-shortcode .confirm-form__actions input[type="button"].btn.btn--outline.btn--wide:hover {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff) !important;
}

.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.wpcf7-previous.confirm-form__back.btn.btn--outline.btn--wide,
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.confirm-form__back.btn.btn--outline.btn--wide[type="button"],
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.wpcf7-previous.btn.btn--outline.btn--wide[type="button"] {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23fff'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#111, #111) !important;
  background-position: calc(50% - 88px) center, calc(50% - 88px) center !important;
  background-repeat: no-repeat !important;
  background-size: 16px 8px, 32px 22px !important;
  padding: 0 20px 0 52px !important;
  text-align: center !important;
}

.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.wpcf7-previous.confirm-form__back.btn.btn--outline.btn--wide:hover,
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.confirm-form__back.btn.btn--outline.btn--wide[type="button"]:hover,
.contact-page .contact-form-shortcode .confirm-form__actions input.wpcf7-form-control.wpcf7-previous.btn.btn--outline.btn--wide[type="button"]:hover {
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='8'%20viewBox='0%200%2016%208'%3E%3Cpath%20d='M16%204H2M6%201L2%204L6%207'%20fill='none'%20stroke='%23111'%20stroke-width='1.2'/%3E%3C/svg%3E"),
    linear-gradient(#fff, #fff) !important;
  background-position: calc(50% - 88px) center, calc(50% - 88px) center !important;
}
