* {
  box-sizing: border-box;
}

:root {
  --base-bg: #fff;
  --paper: #ffffff;
  --ink: #2b2b2b;
  --teal: #2b9ea0;
  --orange: #f08a22;
  --line: #d9e4e4;
}

body {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
  background: var(--base-bg);
}

main {
  position: relative;
  background:
    url("../img/back_v.png") right -140px top calc(220px + var(--bg-scroll-y1, 0px)) / 300px auto no-repeat,
    url("../img/back_v.png") left -40px top calc(170px + var(--bg-scroll-y2, 0px)) / 250px auto no-repeat,
    url("../img/back_v.png") left -150px top calc(860px + var(--bg-scroll-y1, 0px)) / 300px auto no-repeat;
  background-attachment: fixed, fixed, fixed;
}

main::before {
  content: "";
  position: fixed;
  right: -70px;
  top: calc(70px + var(--bg-scroll-y2, 0px));
  width: 220px;
  aspect-ratio: 990 / 1110;
  background: url("../img/back_v.png") center / contain no-repeat;
  transform: rotate(-70deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 30;
  background: #ffffffed;
  border-bottom: 1px solid #e8eded;
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 0 10px;
}

.logo {
  margin: 0;
  line-height: 1;
}

.logo a {
  display: inline-block;
}

.logo img {
  display: block;
  width: 144px;
  height: auto;
}

.sp-nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sp-menu-btn {
  width: 40px;
  height: 32px;
  border: 1px solid #dbe8e8;
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 41;
}

.sp-menu-btn span {
  position: relative;
  width: 18px;
  height: 2px;
  background: #2b9ea0;
  display: block;
  transition: background-color 0.2s ease;
}

.sp-menu-btn span::before,
.sp-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #2b9ea0;
  transition: transform 0.2s ease;
}

.sp-menu-btn span::before {
  top: -6px;
}

.sp-menu-btn span::after {
  top: 6px;
}

.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

.sp-nav-toggle:checked ~ .site-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-nav-toggle:checked + .sp-menu-btn {
  position: fixed;
  top: 12px;
  right: 4%;
}

.sp-nav-toggle:checked + .sp-menu-btn span {
  background: transparent;
}

.sp-nav-toggle:checked + .sp-menu-btn span::before {
  transform: translateY(6px) rotate(45deg);
}

.sp-nav-toggle:checked + .sp-menu-btn span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  font-size: 16px;
  width: 100%;
}

.nav-list li {
  width: 100%;
}

.nav-list a {
  display: block;
  padding: 14px 16px;
  border-top: 1px solid #dbe8e8;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
}

.nav-list li:last-child a {
  border-bottom: 1px solid #dbe8e8;
}

body:has(.sp-nav-toggle:checked) {
  overflow: hidden;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0;
}

.section:not(.hero) {
  background: transparent;
}

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

.section::before,
.section::after {
  display: none;
}

.section::before {
  left: -105px;
  top: -36px;
  transform: rotate(20deg);
}

.section::after {
  right: -105px;
  bottom: -48px;
  transform: rotate(-24deg);
}

.hero {
  background: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 290px;
  aspect-ratio: 1;
  background: url("../img/back_v.png") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hero::before {
  left: -120px;
  bottom: -96px;
  transform: rotate(-18deg);
}

.hero::after {
  right: -84px;
  top: -58px;
  transform: rotate(-62deg);
}

#about,
#works,
#support,
#plan,
#flow,
#voice,
#faq {
  background: transparent;
}

#contact {
  background: transparent;
}

.hero-inner {
  display: grid;
  gap: 16px;
  position: relative;
}

.hero-inner::before {
  content: "";
  position: absolute;
  left: -84px;
  bottom: -132px;
  width: 250px;
  aspect-ratio: 1;
  background: url("../img/back_v.png") center / contain no-repeat;
  transform: rotate(14deg);
  pointer-events: none;
  z-index: 0;
}

.hero-inner > * {
  position: relative;
  z-index: 1;
}

.hero-lead {
  margin: 0;
  font-size: 16px;
  color: #2a8f93;
  font-weight: 700;
}

.hero-title {
  margin: 12px 0 0;
  font-size: 32px;
  line-height: 1.5;
  color: #262b30;
}

.hero-price {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-init,
.hero-month,
.hero-tail {
  color: #2a8f93;
  font-weight: 700;
  font-size: 18px;
}

.hero-zero-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2c9a9d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-zero {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-yen {
  font-size: 15px;
  font-weight: 700;
  margin-left: 1px;
}

.hero-amount {
  font-size: 36px;
  line-height: 1;
  color: var(--orange);
  font-weight: 700;
}

.hero-badge {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
  transition: background-color 0.2s ease;
}

.hero-badge:hover,
.hero-badge:focus-visible {
  background: #2b9ea0;
}

.hero-badge-small {
  font-size: 14px;
  line-height: 1;
}

.hero-badge strong {
  font-size: 32px;
  line-height: 1;
}

.hero-badge-divider {
  width: 74px;
  height: 2px;
  background: #fff;
}

.hero-badge-large {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.hero-slider {
  padding: 8px 0 0;
  overflow: hidden;
}

.slide-row {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 8px;
  transform: translate3d(0, 0, 0);
  animation: hero-slide-loop-sp 24s linear infinite;
}

.slide-row img {
  width: 168px;
  height: 132px;
  object-fit: cover;
}

.slide-row img.slide-edge {
  width: 140px;
}

.about-visuals img,
.works-gallery img,
.support-visuals img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

@keyframes hero-slide-loop-sp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-676px, 0, 0);
  }
}

.hero-slider:hover .slide-row {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .slide-row {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

h2 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.4;
  color: #1e5052;
}

.section p,
.section li,
dl dt,
dl dd,
.contact-form label,
.contact-form input {
  font-size: 14px;
}

.features,
.stats,
.flow {
  padding-left: 1.1rem;
}

.about-visuals {
  margin: 10px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sec-title {
  text-align: center;
  color: #111;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.sec-title-no {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-right: 6px;
}

#about .sec-title {
  position: relative;
}

#about .sec-title::after {
  content: "";
  width: 150px;
  height: 4px;
  border-radius: 999px;
  background: #3fa6aa;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.about-lead {
  text-align: center;
  line-height: 1.9;
}

.about-heading {
  margin: 20px 0 14px;
  text-align: center;
  color: var(--orange);
  font-size: 34px;
  font-weight: 800;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-feature-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  padding: 8px 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-feature-card h4 span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff6ee;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

.about-feature-card ul {
  margin: 0;
  padding-left: 1.15em;
  line-height: 1.8;
}

.about-feature-card li {
  margin-bottom: 2px;
}

.about-feature-card img {
  margin: 8px auto 0;
  width: min(210px, 88%);
  height: 100px;
  object-fit: contain;
  display: block;
}

.about-feature-image-pair {
  margin: 8px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.about-feature-image-pair img {
  margin: 0;
  width: auto;
  height: auto;
  object-fit: contain;
}

.about-feature-image-pair .pair-sub {
  width: 76px;
}

.about-feature-image-pair .pair-main {
  width: 112px;
}

.about-cta-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.about-cta-wrap .btn {
  display: inline-flex;
}

#plan {
  background: transparent;
}

#plan .sec-title {
  margin-bottom: 22px;
}

.plan-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.plan-basic-wrap {
  margin-top: 14px;
  background: #f5cfb2;
  border-radius: 10px;
  padding: 12px;
}

.plan-basic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.plan-basic-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 10px;
}

.plan-card-head {
  min-height: 44px;
  background: #3fa6aa;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
}

.plan-no {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: rgba(191, 235, 234, 0.92);
}

.plan-name {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.plan-catch {
  margin: 8px 10px;
  text-align: center;
  color: #2c8f93;
  font-size: 15px;
  font-weight: 700;
}

.plan-price-row {
  margin: 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plan-monthly {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3fa6aa;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.plan-price-value {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 46px;
  line-height: 1;
  color: #f08a22;
  font-weight: 600;
}

.plan-price-tax {
  font-size: 14px;
  font-weight: 700;
}

.plan-meta {
  margin: 0 10px 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.plan-meta li {
  background: #c8e4e5;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.plan-desc {
  margin: 8px 10px 6px;
  font-size: 13px;
  font-weight: 700;
}

.plan-list {
  margin: 0 10px;
  padding-left: 1.1em;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-note {
  margin: 6px 10px 0;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
}

.plan-plus {
  margin: 10px auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3fa6aa;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
}

.plan-option-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 10px;
}

.plan-option-col {
  display: grid;
  gap: 8px;
}

.plan-option-item {
  position: relative;
}

.plan-option-item.is-free {
  padding-left: 56px;
}

.plan-option-badge {
  position: absolute;
  left: 0;
  top: 2px;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #f08a22;
  color: #fff;
  display: grid;
  place-items: center;
  transform: rotate(-15deg);
  font-size: 10px;
  font-weight: 700;
}

.plan-option-badge::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -7px;
  width: 10px;
  height: 7px;
  background: #f08a22;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.plan-option-title {
  margin: 0;
  border-radius: 6px;
  background: #f5cfb2;
  color: #e6712f;
  padding: 6px 8px;
  font-size: 13px;
  line-height: 1.3;
}

.plan-option-item p {
  margin: 6px 2px 0;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.plan-lp-wrap {
  margin-top: 14px;
  background: #c4dfe0;
  border-radius: 10px;
  padding: 10px;
}

.plan-lp-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.plan-lp-head {
  min-height: 44px;
  background: #3fa6aa;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: #fff;
  position: relative;
}

.plan-lp-ribbon {
  position: absolute;
  left: -14px;
  top: 8px;
  background: #f08a22;
  color: #fff;
  padding: 2px 12px;
  transform: rotate(-35deg);
  font-size: 10px;
  font-weight: 700;
}

.plan-lp-no {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: rgba(191, 235, 234, 0.95);
}

.plan-lp-head h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.plan-lp-top {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.plan-lp-about {
  position: relative;
}

.plan-lp-about-badge {
  position: absolute;
  left: 8px;
  top: -10px;
  margin: 0;
  background: #3fa6aa;
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  transform: rotate(-14deg);
}

.plan-lp-about-box {
  border: 2px dashed #3fa6aa;
  padding: 18px 10px 10px;
}

.plan-lp-about-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.plan-lp-catch {
  margin: 0 0 6px;
  color: #2c8f93;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-lp-price {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.plan-lp-price strong {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #f08a22;
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
}

.plan-lp-price span {
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-5px);
}

.plan-lp-points {
  padding: 0 10px 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.plan-lp-point h4 {
  margin: 0;
  background: #c8e4e5;
  border-radius: 8px;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: #2c8f93;
  font-size: 13px;
  line-height: 1.3;
}

.plan-lp-point h4 span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3fa6aa;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.plan-lp-point p {
  margin: 6px 2px 0;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

.plan-cta-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

#flow {
  background: transparent;
  padding-bottom: 0;
}

#flow .sec-title {
  margin-bottom: 20px;
}

.flow-lead {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.flow-note {
  margin: 6px 0 0;
  text-align: center;
  font-size: 12px;
  color: #4f4f4f;
}

.flow-steps {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.flow-step {
  min-height: 72px;
  padding: 10px 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.flow-step-no {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.flow-step-text {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.flow-step.is-peach {
  background: #efb37f;
}

.flow-step.is-orange {
  background: #f08a22;
}

.flow-step.is-light-teal {
  background: #94c8ca;
  color: #1f5e60;
}

.flow-step.is-teal {
  background: #3fa6aa;
}

.flow-cta-band {
  margin-top: 22px;
  background: #3fa6aa;
  padding: 24px 0 28px;
}

.flow-cta-copy {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.flow-cta-group {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.flow-cta-btn {
  width: min(320px, 100%);
  min-height: 58px;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
}

.flow-cta-label {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.flow-cta-btn.is-orange .flow-cta-label {
  color: #f08a22;
}

.flow-cta-btn.is-teal .flow-cta-label {
  color: #3fa6aa;
}

.flow-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-image: url("../img/arrow.png");
}

.flow-cta-btn.is-orange .flow-cta-icon {
  background-color: #f08a22;
}

.flow-cta-btn.is-teal .flow-cta-icon {
  background-color: #3fa6aa;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.works-gallery {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.works-lead {
  text-align: center;
}

.works-bottom {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.works-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.works-stats li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.works-stats img {
  width: 22px;
  height: 22px;
}

.works-stat-label {
  font-size: 14px;
  font-weight: 700;
}

.works-stat-value {
  font-family: "Poppins", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.works-stat-unit {
  font-size: 14px;
  font-weight: 700;
}

.works-btn {
  justify-self: end;
}

.btn-cta {
  min-width: 210px;
  min-height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 42px 0 16px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

.btn {
  display: inline-block;
  position: relative;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 10px 42px 10px 16px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../img/arrow.png") center / contain no-repeat;
  pointer-events: none;
}

.btn-sub {
  background: var(--teal);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-grid {
  margin: 12px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

#support .sub {
  text-align: center;
  font-size: 14px;
}

.support-card {
  border: 2px solid var(--teal);
  box-shadow: none;
}

.support-card h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 18px;
}

.support-card p {
  margin: 0;
}

.support-card-image {
  margin: 8px 0 0 auto;
  width: min(170px, 72%);
  height: auto;
  object-fit: contain;
  display: block;
}

.support-wide-card {
  margin-top: 10px;
  border: 2px solid var(--teal);
  box-shadow: none;
}

.support-wide-main h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 20px;
}

.support-wide-main p,
.support-time {
  margin: 0;
}

.support-wide-side {
  margin-top: 10px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.support-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.support-inline-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.support-time {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.support-wide-image {
  width: min(280px, 100%);
  height: auto;
}

.support-cta-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.contact-form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
}

.contact-form input {
  border: 1px solid #cfd9d9;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

dl dt {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--teal-soft);
  border-radius: 8px;
  font-weight: 700;
}

dl dd {
  margin: 8px 0 12px;
  padding: 0 2px;
}

#faq {
  background: transparent;
}

#faq .sec-title {
  margin-bottom: 20px;
}

#faq dl {
  margin: 0;
}

#faq dt {
  margin-top: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #c8e4e5;
  color: #2a7f84;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

#faq dd {
  margin: 8px 0 22px;
  padding: 0 0 0 8px;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 700;
}

#faq dd:last-child {
  margin-bottom: 0;
}

#contact {
  background: transparent;
  border-top: 0;
  padding: 0;
}

.flow-cta-band-bottom {
  margin-top: 0;
}

.voice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.voice-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.voice-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.voice-body {
  flex: 1;
}

.voice-name {
  margin: 0 0 4px;
  color: #3f9ea2;
  font-size: 16px;
  font-weight: 700;
}

.voice-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 0px;
  text-align: center;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20%;
}
.site-footer .list{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  gap: 20px;

  li {
    img  {
      width: 120px;
    }
  }
}
small {
  display: inline-block;
}

.site-footer a:link,
.site-footer a:visited {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  transition: .3s;
}

.site-footer a:hover,
.site-footer a:active {
  color: var(--orange);
  /* text-decoration: underline; */
}
.site-footer .copy{
  width: 100%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 1em ;
  margin-bottom: 0;
}