:root {
  --bg: #eef7ea;
  --white: #fff;
  --text: #222;
  --sub: #5b655e;
  --green: #00C300;
  --green-dark: #3f8631;
  --green-soft: #e8f7e6;
  --green-line: #cfe6cb;
  --gray-soft: #f3f4f5;
  --gray-line: #e1e4e7;
  --yellow-soft: #fffef4;
  --yellow-line: #efe2ad;
  --shadow: 0 4px 7px rgb(0 0 0 / 20%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  padding-top: env(safe-area-inset-top);
}

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

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

.is-hidden {
  display: none !important;
}

.fv {
  padding: 24px 16px 60px;
  background: linear-gradient(180deg, #edf9ea 0%, #fff 65%);
  background-image: url(./images/bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.fv__inner {
  max-width: 560px;
  margin: 0 auto;
}

.fv__logoWrap {
  margin-bottom: 14px;
  text-align: center;
}

footer .fv__logoWrap {
  text-align: center;
  width: 358px;
  margin-bottom: 0px;
}

.fv__logo {
  max-width: 110px;
  margin: 0 auto;
}

.fv__medal {
  max-width: 296px;
  margin: 0 auto;
}

.fv__medal2 {
  max-width: 100%;
  margin: 0 auto;
}

.fv__logoFallback {
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 900;
}

.fv__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.fv__badges li {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8ed;
  border: 2px solid #62b64a;
  font-size: 15px;
  font-weight: 700;
  color: #222222;
}

.fv__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 400px;
  margin: 0 auto;
}

.fvCard {
  background: #f4f4f4;
  box-shadow: var(--shadow);
  text-align: center;
  border-radius: 8px;
  padding-bottom: 6px;
  border: 3px solid #123965;
}

.fvCard--after {
  background: #fff;
  border: 3px solid #00C300;
}

.fvCard__imageWrap {
  margin-bottom: 6px;
}

.fvCard__image {
  width: 100%;
  height: 85px;
  object-fit: cover;
  object-position: 0% 18%;
}

.fvCard__label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
}

.fvCard__price {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.small_font {
  color: #222;
  font-size: 14px;
  font-weight: 700;
}

.fvCard__note {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #6d756f;
}

.fvCard__note--accent,
.fvCard--after .fvCard__note {
  color: #f56500;
}

.fv__badges span {
  font-size: 17px;
}

.fv__title span {
  font-size: 48px;
  color: #f56500;
}

.orange {
  color: #f56500;
}

.big_font {
  font-size: 37px !important;
}

.fv__title {
  margin: 6px 0 12px;
  text-align: center;
  font-size: clamp(27px, 5vw, 32px);
  line-height: 1.2;
}

.fv__lead {
  margin: 0 0 8px;
  text-align: center;
  color: var(--sub);
  font-size: 15px;
  font-weight: 600;
}

.fvStartCard {
  background: #00C300;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px 18px;
}

.fvStartCard__lead {
  margin: 0 0 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.fvTypeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fvTypeBtn {
  min-height: 100px;
  border: 2px solid #0a4d0a;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 4px #0e531b9e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 14px 0 6px;
}

.fvTypeBtn__icon {
  font-size: 24px;
}

.fvTypeBtn__text {
  font-size: 23px;
  font-weight: 700;
  color: #222;
}

.fv__trust {
  margin: 18px 0 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

.fv__operator {
  margin: 0;
  text-align: center;
  color: var(--sub);
  font-size: 12px;
}

.chatApp {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #eff8ec;
}

.chatHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #dfe8dc;
  padding: 12px 14px;
}

.backBtn {
  border: none;
  background: none;
  color: #45604a;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
}

.progressWrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progressTrack {
  flex: 1;
  height: 8px;
  background: #e5ece2;
  border-radius: 999px;
  overflow: hidden;
}

.progressFill {
  width: 0%;
  height: 100%;
  background: var(--green);
  transition: width .25s ease;
}

.progressText {
  min-width: 36px;
  text-align: right;
  font-size: 12px;
  font-weight: 900;
  color: #45604a;
}

.screen {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 140px 16px 30px;
}

.botRow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.botAvatar {
  width: 82px;
  height: 82px;
  overflow: hidden;
  background: url(images/bot.png) center / contain no-repeat;
}


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

.botBody {
  flex: 1;
}

.botName {
  margin: 0 0 4px 4px;
  font-size: 12px;
  font-weight: 900;
  color: #222;
}

.userRow {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.userBubble {
  max-width: 85%;
  background: var(--gray-soft);
  border: 1px solid var(--gray-line);
  border-radius: 18px;
  border-bottom-right-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.subCard {
  background: #ffffff;
  border: 2px solid #67c23a;
  border-radius: 10px;
  padding: 9px 9px 9px;
  box-shadow: 0 8px 20px rgba(103, 194, 58, 0.12);
  margin-top: 18px;
  margin: 12px 70px 16px 70px;
}

.subCard__label {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 8px;
  background: #00c300;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 999px;
}

.subCard__body {
  font-size: 13px;
  color: #333;
}

.choiceGrid--cards {
  grid-template-columns: repeat(3, 1fr);
}

.choiceBtn--card {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.choiceBtn__icon {
  font-size: 24px;
  display: block;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d7ddd7;
  background: #fff;
  font-size: 15px;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.checkLabel {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
}

.primaryBtn,
.secondaryBtn {
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.primaryBtn {
  background: var(--green);
  color: #fff;
}

.secondaryBtn {
  background: #eef3ee;
  color: #334;
}

.linkBtn {
  border: none;
  background: none;
  color: #56715c;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  padding: 6px 0;
}

.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: .15s;
}

.typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: .25;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.botRow--sub {
  margin-left: 54px;
}

.botBody--sub {
  flex: 1;
}

.botRow--sub .botBubble {
  border-top-left-radius: 18px;
}

.fvTrustBox {
  margin-top: 22px;
}

.fvTrustBox__inner {
  max-width: 560px;
  margin: 0 auto;
}

.fv__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fvTrustItem {
  background: #ffffff;
  border: 1px solid #dbe7d8;
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.fvTrustItem__icon {
  font-size: 18px;
  line-height: 1;
}

.fvTrustItem__text {
  font-size: 12px;
  line-height: 1.5;
  color: #222;
  font-weight: 700;
}

.fvTrustItem__strong {
  font-weight: 700;
  color: #00c300;
  font-size: 14px;
}

.lpFooter {
  padding: 12px 16px 12px;
  background: #ffffff;
}

.lpFooter__inner {
  max-width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
  gap: 18px;
}

.lpFooter__operator {
  margin: 0;
  text-align: center;
  color: #222;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .fv__trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fvTrustItem {
    min-height: auto;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 14px;
    gap: 10px;
  }

  .fvTrustItem__icon {
    flex: 0 0 20px;
  }

  .fvTrustItem__text {
    font-size: 13px;
  }
}

.fvTypeBtn:hover {
  opacity: 0.94;
}

.fvTrustBar {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #5f6f5a;
}

.fvTrustBar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fvTrustBar span:not(:last-child)::after {
  content: "｜";
  margin-left: 14px;
  color: #b8c5b4;
}

.is-left {
  position: relative;
  overflow: hidden;
}

.is-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 27%);
  pointer-events: none;
}

h3.p-topAbout__img--head {
  margin: 0;
  padding: 3px 0;
  color: #fff;
  font-size: 14px;
}

.fvCard--before h3 {
  background: #123965;
}

.fvCard--after h3 {
  background: #00C300;
}

.fvCard--before .fvCard__note {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  align-items: center;
  background: #6d756f;
  border-radius: 4px;
  padding: 4px 18px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.fvCard--after .fvCard__note {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  align-items: center;
  background: #f56500;
  border-radius: 4px;
  padding: 4px 18px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.fvCard__note {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
}

.fvCard__note::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #6d756f;
}

.fvCard--before .fvCard__note::before {
  border-bottom: 6px solid #6d756f;
}

.fvCard--after .fvCard__note--accent::before {
  border-bottom: 6px solid #f56500;
}

.fvcta__image {
  width: 120px;
  height: 44px;
  object-fit: contain;
}

.fvStartCard__lead {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.fvStartCard__icon {
  width: 30px;
  height: 30px;
}

.botBubble {
  position: relative;
  background: var(--green);
  border: 1px solid var(--green-line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  color: #fff;
  font-weight: 500;
}

.botBubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--green-line);
}

/* 内側の色 */
.botBubble::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid var(--green);
}

.botRow--sub .botBubble::before,
.botRow--sub .botBubble::after {
  display: none;
}

.userBubble {
  position: relative;
  max-width: 85%;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.userBubble::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--gray-line);
}

.userBubble::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #fff;
}

.formStack {
  display: grid;
  gap: 12px;
  background: #19c60d38;
  border-radius: 10px;
  padding: 14px 14px 14px;
  max-width: 66%;
  margin: 0 auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
}

.choicePanel__title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 16px;
}

.choiceGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 0;
}

.choiceBtn {
  cursor: pointer;
  appearance: none;
  border: 3px solid #00C300;
  background: #fff;
  border-radius: 8px;
  min-height: 54px;
  padding: 10px 10px;
  font-size: 17px;
  font-weight: 800;
  color: #222;
  box-shadow: 0 4px 0 #3f86315c;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.choiceBtn:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 0 #3f863180;
}

.choiceBtn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #3f863180;
}

.choiceGrid--single {
  grid-template-columns: 1fr;
}

.fv__lead span {
  color: #00c300;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  animation: leadBounce 1.2s ease-in-out infinite;
}

@keyframes leadBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-3px);
  }
}

@media (max-width: 767px) {
  .choicePanel {
    padding: 18px 14px 14px;
    border-radius: 14px;
  }

  .choicePanel__title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .choiceGrid {
    gap: 10px;
  }

  .choiceBtn {
    min-height: 64px;
    font-size: 16px;
    padding: 12px 8px;
    border-width: 2px;
    box-shadow: 0 3px 0 #2f2f2f;
  }
}

@media (max-width: 560px) {
  .fvStartCard__icon {
    width: 20px;
    height: 20px;
  }

  .fvStartCard__lead {
    font-size: 18px;
  }

  .fvCard__price {
    font-size: 19px;
  }

  .fvCompare {
    grid-template-columns: 1fr 1fr;
  }

  .fvTypeGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .choiceGrid--cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .fv__title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .big_font {
    font-size: 25px !important;
  }

  .fv__title span {
    font-size: 30px;
  }

  .fvTypeBtn__text {
    font-size: 16px;
  }

  .fvcta__image {
    width: 80px;
    height: 30px;
  }

  .lpFooter__inner {
    max-width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
    align-items: center;
    gap: 6px;
  }

  footer .fv__logoWrap {
    width: 280px;
  }

  .fv__medal {
    max-width: 250px;
  }

  .fv__logo {
    max-width: 90px;
  }

  .fv__logoWrap {
    margin-bottom: 12px;
  }

  .fvCard__image {
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: 0% 28%;
  }

  .fv__compare {
    gap: 8px;
    width: 275px;
  }

  .fvCard--after .fvCard__note {
    font-size: 10px;
  }

  .fvCard--before .fvCard__note {
    font-size: 10px;
  }
}

.subCard__body {
  overflow-x: auto;
}

.helperTable {
  width: 100%;
  background: #fff;
  border: 3px solid #67c23a;
  overflow: hidden;
  border-radius: 10px;
  border-collapse: collapse;
  font-size: 12px;
}

.helperTable thead th {
  background: #00c300;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 4px 10px;
  border: 1px solid #8ad164;
}

.helperTable tbody td {
  padding: 4px 10px;
  border: 2px solid #d9e8cf;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}

.helperTable tbody tr:nth-child(even) td {
  background: #f8fff3;
}

.helperTable tbody td:nth-child(1),
.helperTable tbody td:nth-child(2) {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.helperTable tbody td:nth-child(3) {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

@media (max-width: 768px) {
  .subCard {
    padding: 12px;
  }

  .subCard__label {
    font-size: 15px;
    padding: 7px 12px;
    margin-bottom: 10px;
  }

  .helperTable {
    border-width: 2px;
  }

  .helperTable thead th {
    font-size: 14px;
    padding: 10px 6px;
  }

  .helperTable tbody td {
    padding: 10px 6px;
  }

  .helperTable tbody td:nth-child(1),
  .helperTable tbody td:nth-child(2) {
    font-size: 17px;
  }

  .helperTable tbody td:nth-child(3) {
    font-size: 12px;
    line-height: 1.4;
  }
}

.formStack--contact {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 15px 15px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(91, 181, 50, 0.10);
  gap: 14px;
}

.input--contact {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #edf4e8;
  font-size: 16px;
  color: #333;
}

.input--contact::placeholder {
  color: #666;
  font-size: 15px;
}

.input--contact:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #67c23a;
}

.checkLabel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.checkLabel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #67c23a;
}

.primaryBtn--contact {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 99px;
  background: linear-gradient(180deg, #43c61f 0%, #2ea80d 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(62, 177, 31, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primaryBtn--contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(62, 177, 31, 0.28);
}

.primaryBtn--contact:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .formStack--contact {
    max-width: 100%;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .input--contact {
    height: 52px;
    border-radius: 15px;
    font-size: 15px;
  }

  .input--contact::placeholder {
    font-size: 14px;
  }

  .primaryBtn--contact {
    height: 54px;
    border-radius: 15px;
    font-size: 18px;
  }

  .checkLabel {
    font-size: 14px;
  }
}

.secondaryBtn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 16px;
  background: #fff;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #e5eadf;
  cursor: pointer;
}

.linkBtn {
  display: inline-block;
  margin: 8px auto 0;
  background: none;
  border: none;
  color: #444;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}

.input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #e8eee2;
  font-size: 16px;
}

.input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #67c23a;
}

.choiceBtn span {
  display: flex;
  align-items: center !important;
  gap: 5px !important;
  justify-content: flex-start !important;
  flex-direction: column !important;
}

.secondaryBtn:disabled,
.primaryBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.secondaryBtn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 16px;
  background: #fff;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #e5eadf;
}

.linkBtn {
  display: inline-block;
  margin: 8px auto 0;
  background: none;
  border: none;
  color: #444;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}


@media (max-width: 560px) {
  .formStack {
    max-width: 100%;
  }

  .subCard {
    margin: 12px 0px 16px 0px;
  }

  .subCard {
    padding: 10px;
  }

  .subCard__label {
    font-size: 13px;
    padding: 7px 12px;
    margin-bottom: 8px;
  }

  .helperTable thead th {
    font-size: 14px;
    padding: 6px 6px;
  }

  .helperTable tbody td:nth-child(1),
  .helperTable tbody td:nth-child(2) {
    font-size: 14px;
  }

  .helperTable tbody td:nth-child(3) {
    font-size: 14px;
    line-height: 1.4;
  }

  .fvStartCard {
    background: #00C300;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 10px 10px;
  }

  .fvTypeGrid {
    gap: 6px;
  }

  .fv {
    padding: 24px 8px 60px;
  }

  .fv__lead span {
    font-size: 18px;
  }
}

.secondaryBtn--sms-main {
  background: linear-gradient(180deg, #43c61f 0%, #2ea80d 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(62, 177, 31, 0.22);
}

.primaryBtn--contact.is-inactive {
  background: #f3f4f6;
  color: #999;
  box-shadow: none;
}

.input--sms-highlight {
  box-shadow: inset 0 0 0 2px #ff4d4f;
  background: #fff;
}

.input--sms-done {
  box-shadow: inset 0 0 0 2px #67c23a;
}