@charset "utf-8";

/* === Base === */
html,
body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  color: #000;
  font-size: 1.0rem;
  line-height: 1.8;
  font-family: "noto-sans-cjk-jp", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.wrapper {
  width: 86%;
  max-width: 100rem;
  margin: 0 auto
}

.pc {
  display: block
}

.sp {
  display: none
}

/* ===== Header Bar ===== */
#header-bar {
  background: #fff;
  padding: 3rem 0;
}

#header-bar .flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  line-height: 20px;
}

#header-bar .logo img {
  height: 20px;
  display: block;
}

#header-bar .catch {
  font-weight: 900;
  font-style: normal;
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
}

#header-bar .catch:before {
  content: "";
  background-color: #000;
  width: 2px;
  height: 20px;
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
}


/* === Hero  === */
#main_visual {
  background: linear-gradient(-45deg, #A4E021 0%, #06c755 100%);
  color: #fff;
  padding: 5rem 0 0;
}

.hero-flex {
  display: flex;
  align-items: center;
}

.hero-copy {
  font-weight: 900;
  flex: 1;
  line-height: 1.2;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 .8rem;
  font-size: clamp(2.6rem, 2rem + 3vw, 5.6rem);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 2rem + 3vw, 5.6rem);
  line-height: 1.5;
}

.hero-title span {
  color: #000
}

.hero-lead {
  margin: 0;
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 2.4rem);
}

.hero-img {
  width: 59rem;
  height: 57rem;
  position: relative;
}


.hero-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: absolute;
}

.hero-img img:nth-child(1) {
  animation: updown1 3s ease-in-out infinite;
  z-index: 1;
  animation-delay: 0.2s;
}

.hero-img img:nth-child(2) {
  animation: updown2 3s ease-in-out infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }

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

@keyframes updown2 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

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

.hero-bottom {
  background: #111;
}

.cta-band.results-bottom {
  background: url("../img/cta-band-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
}

.cta-band {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 0 16rem;
  text-align: center;
  margin-top: 5rem;
}

.cta-lead-title {
  margin: 0 0 3rem;
  display: inline-block;
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 1.3;
  font-feature-settings: "palt";
}

.cta-lead {
  font-size: clamp(1.4rem, 0.68rem + 3.6vw, 5rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 5rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  padding: 1rem 0;
  transition: .25s;
  font-size: clamp(1.2rem, 1.04rem + 0.8vw, 2rem);
  width: 80%;
  max-width: 80.2rem;
  text-align: center;
  transition: transform 0.5s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s cubic-bezier(.25, .8, .25, 1);
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(.95);
}

.btn-line {
  background: linear-gradient(-45deg, #A4E021 0%, #06c755 100%);
  color: #fff;
}

/* === Problems === */
#problems {
  position: relative;
  padding: 4rem 0 2rem;
}

.problems-bg {
  background: url("../img/problems-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}

#problems .card {
  position: relative;
  margin-top: -11rem;
}

#problems .ttl {
  font-size: clamp(1.6rem, 1.48rem + 0.6vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 1.6rem;
  text-align: center
}

#problems .list {
  margin: 0;
  padding: 0;
  list-style: none
}

#problems .list li {
  position: relative;
  padding-left: 3.2rem;
  margin: 0 0 1.2rem
}

#problems .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #06c755
}

#problems .list li::after {
  content: "✔";
  position: absolute;
  left: .35rem;
  top: -.1rem;
  font-size: clamp(1.6rem, 1.48rem + 0.6vw, 2.2rem);
  color: #fff;
  line-height: 2.2rem
}

#problems .list span,
#problems .list strong {
  color: #06c755;
  font-weight: 700
}

/* === Choice === */
#choice {
  text-align: center;
  padding: 5em 0 0;
}

.choice-h2 {
  color: #06c755;
  font-size: clamp(1.2rem, 0.32rem + 4.4vw, 5.6rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.choice-sub {
  margin: 0 0 5rem;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  font-weight: 700;
}

.points {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin: 0 auto 1.6rem;
  max-width: 54.2rem;
}

.choice-desc {
  margin: 0 0 2rem;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 2;
}

#choice mark {
  background: #ff0000;
  color: #fff;
  padding: 0 0.5rem;
}

.choice-strong {
  font-weight: 700;
  font-size: clamp(1.2rem, 0.64rem + 2.8vw, 4rem);
  line-height: 1.3;
  margin: 5rem auto;
}

.choice-strong strong {
  color: #ff0000;
}

.choice-caution {
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);
  margin-bottom: 5rem;
  text-align: left;
  line-height: 1.8;
}

.loop-slider {
  display: none;
  opacity: 0;
  transition: opacity .1s linear;
}

.loop-slider img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slider.slick-initialized {
  display: block !important;
  opacity: 1 !important;
  margin-bottom: 0rem;
}

/* === Achievements === */
#achievements {
  background: linear-gradient(90deg,
      #000 0%,
      #3c3c3c 50%,
      #000 100%);
  color: #fff;
  padding: 11rem 0;
  text-align: center
}

.achv-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#achievements .chip {
  display: inline-block;
  background: #06c755;
  color: #fff;
  padding: 0 5rem;
  border-radius: 999px;
  margin-bottom: 3rem;
  font-size: clamp(1rem, 0.72rem + 1.4vw, 2.4rem);
  font-weight: 700;
}

#achievements .corp {
  width: 48.3rem;
  margin: 0 auto 7rem
}

.achv-ttl {
  font-size: clamp(1.1rem, 0.52rem + 2.9vw, 4rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.achv-lead {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  margin: 0 0 8rem;
  line-height: 2;
}

.trophy-cards {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  list-style: none;
  padding: 0;
}

.trophy-cards li {
  flex: 0 1 calc((100% - 2 * 1.6rem) / 3);
  /* 3列分の幅（隙間×2を差し引く） */
}

.trophy-cards li img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.trophy-foot {
  font-size: clamp(1rem, 0.98rem + 0.1vw, 1.1rem);
  color: #fff;
  text-align: center;
  margin: 3rem auto 6rem;
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1rem;
}


.badge-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 8rem;
  margin-top: 2.4rem;
  border: 2px solid #4d4d4d;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

.badge-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, #3c3c3c 50%, #000 100%);
  pointer-events: none;
}

.badge-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ccc;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.badge-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.badge-head figure {
  margin: 0;
  flex: 0 0 23rem;
}

.badge-head img {
  display: block;
  width: 100%;
  height: auto;
}

.badge-head p {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.1rem, 0.84rem + 1.3vw, 2.4rem);
  line-height: 1.6;
  color: #fff;
  font-feature-settings: "palt";
}

.badge-text {
  position: relative;
  z-index: 1;
}

.badge-text small {
  display: block;
  margin: 0 0 6rem;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.6rem);
  line-height: 1.8;
}

.amz-cta {
  width: 100%;
}

.btn-orange {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
  border-radius: 999px;
  background: linear-gradient(-45deg, #f15a24 0%, #f18400 100%);
  color: #fff;
  text-align: center;
  transition: .3s;
  position: relative;
  z-index: 1;
  font-weight: normal;
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
}

.btn-orange:hover {
  opacity: .85;
}




/* === Results === */
#results {
  background: #96b4e1 url("../img/results-bg.webp") no-repeat center top / 100%;
  padding: 6rem 0 0;
}

.results-title {
  text-align: center;
  margin: 0 auto;
  max-width: 42.1rem;
  width: 65%;
}

.results-copy {
  text-align: center;
  margin: 5rem 0;
  font-size: clamp(1.4rem, 1.04rem + 1.8vw, 3.2rem);
  font-weight: 500;
}

.results-copy strong {
  font-size: clamp(1.4rem, 0.86rem + 2.7vw, 4.1rem);
  font-weight: 700;
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  display: inline-block;
}

.chart-card {
  max-width: 78.3rem;
  margin: 0 auto 10rem;
}

/* === Service === */
#service {
  background: #f7f8f9;
  padding: 10rem 0 17rem;
}

.sec-en {
  text-align: center;
  color: #06c755;
  font-size: clamp(2.6rem, 1.92rem + 3.4vw, 6rem);
  font-family: "century-gothic", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  ;
}

.sec-lead {
  text-align: center;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 2;
}

.nummark {
  text-align: center;
  margin: 3rem auto 0;
}

.chips.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  margin: 0 0 7rem;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.chip-card {}

.chip {
  display: inline-block;
  background: #00c853;
  color: #fff;
  border-radius: 999px;
  padding: 0 2rem;
  font-weight: 700;
  font-size: clamp(1rem, 0.72rem + 1.4vw, 2.4rem);
  margin-bottom: 3rem;
  position: relative;
}

.chip:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background: url("../img/fukidashi.svg");
  background-repeat: no-repeat;
}

.chip-card h4 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem);
  margin: 0rem 0 2rem;
  font-weight: 700;
  font-feature-settings: "palt";
}

.chip-card p {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 1.8;
}

.phone-mock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}

.phone-mock li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 31rem;
  display: flex;
  align-items: center;
}

.phone-mock img {
  display: block;
  width: 100%;
  height: auto;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}

.grid4 li {
  background: #fff;
  border-radius: 15px;
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.grid4 .icon {
  width: 5.7rem;
  height: 5.7rem;
  position: absolute;
  right: -1rem;
  top: -1rem;
}

.grid4 h4 {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem);
}

.grid4 p {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 1.8;
}

/* === Plan === */
#plan {
  padding: 10rem 0;
}

.plan-wrapper {
  max-width: 75rem;
}


.plan-en {
  text-align: center;
  color: #06c755;
  font-size: clamp(3rem, 2.4rem + 3vw, 6rem);
  font-family: "century-gothic", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1rem;
  margin-bottom: 3rem;
  ;
}

.plan-ttl {
  font-size: clamp(1.4rem, 1.04rem + 1.8vw, 3.2rem);
  margin-bottom: 7rem;
  text-align: center;
}

.plan-note {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  margin-bottom: 2rem;
}

.plan-table {}

.plan-table img {
  display: block;
  width: 100%;
  height: auto
}

.plan-footnotes {
  margin: 2rem auto 10rem;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);
  line-height: 2;
}

/* === Contact === */
#contact {
  background: #1a1a1a;
  color: #fff;
  padding: 6rem 0 8rem;
  text-align: center;
}

.contact-head {
  margin-top: -8.5rem;
}

#contact .tag {
  display: inline-block;
  background: linear-gradient(-45deg, #A4E021 0%, #06c755 100%);
  color: #fff;
  border-radius: 999px;
  padding: 1rem 5rem;
  letter-spacing: 0.5em;
  margin-bottom: 6rem;
  font-size: clamp(1.8rem, 1.66rem + 0.7vw, 2.5rem);
}

#contact h2 {
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 2.4rem);
  line-height: 2;
  margin-bottom: 2rem;
}

#contact p {
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  margin-bottom: 5rem;
}

.telbox {
  background: #fff;
  color: #000;
  border-radius: 1rem;
  padding: 2rem 5rem;
  display: inline-block;
  margin: 0 auto 5rem;
  letter-spacing: 0.2rem;
}

.tel-link {
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 1.12rem + 4.4vw, 6.4rem);
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  line-height: 1.2;
}

.tel-link img {
  max-width: 4.9rem
}

.telbox small {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.6rem);
}

#entry-form {
  margin: 0 auto;
  background-color: #fff;
  max-width: 85%;
  width: 92rem;
  padding: 2rem 4rem 3rem 4rem;
}

#contact .brand-block {
  margin: 8rem auto 0;
  text-align: center;
}

#contact .brand-block img {
  display: block;
  max-width: 46.6rem;
  width: 70%;
  margin: 0 auto 2rem;
}

#contact .brand-block p {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.6rem);
  letter-spacing: .08em;
}

#copyright {
  margin: 0 auto;
  background-color: #000;
  color: #fff;
  padding: 1.6rem 0;
  text-align: center;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* === Footer === */
#footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.8rem 0;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

:root {
  --vh: 1vh;
  --headerH: 0px;
}

/* ---- FadeIn base ---- */
.animation {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.fadeInUp {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeInUp;
  visibility: visible !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 動き弱めたい人向け（OS設定を尊重） */
@media (prefers-reduced-motion: reduce) {
  .animation {
    transition: none !important;
  }

  .fadeInUp {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}



/* ページトップ */
#page-top {
  position: fixed;
  width: 8rem;
  height: 8rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  background: #06c755;
  border-radius: 50%;
}

/*このクラスが付与されると表示する*/
#page-top.active {
  opacity: 1;
  visibility: visible;
}

#page-top a {
  position: relative;
  display: block;
  width: 8rem;
  height: 8rem;
}

#page-top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 4rem;
  color: #fff;
  position: absolute;
  width: 8rem;
  height: 8rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-top:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
  transform: translateY(-5px);
}

#page-top:hover::before {
  transform: translateY(5px);
  opacity: 1;
}

#wpadminbar,
#included-files-fie-on-wp-footer {
  display: none;
}

body.thanks-page #overlay {
  display: none !important;
}

/* === Responsive === */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


@media (max-width: 768px) {
  .sp {
    display: inline
  }

  .pc {
    display: none
  }

  #header-bar {
    padding: 1rem 0;
  }

  #header-bar .catch {
    padding-left: 0;
    font-weight: 700;
  }

  #header-bar .logo img {
    height: 13px;
  }

  #header-bar .catch:before {
    width: 1px;
    height: 12px;
    left: -11px;
  }

  #main_visual {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    padding-bottom: calc(env(safe-area-inset-bottom) + var(--urlbarH, 0px) + 24px);
    min-height: calc((var(--vh, 1vh) * 100) - var(--headerH, 0px) - var(--urlbarH, 0px));
    padding: 0;
  }

  @supports (height:100svh) {
    #main_visual {
      min-height: calc(100svh - var(--headerH, 0px) - var(--urlbarH, 0px));
    }
  }

  #main_visual>.wrapper {
    height: 100%;
    display: grid;
  }


  .hero-flex {
    height: 100%;
    display: grid;
    grid-template-rows: 3fr 7fr;
    align-content: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    white-space: normal;
    padding: 1rem 0 0;
  }

  .hero-img {
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: 80vw;
    aspect-ratio: 570 / 590;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-bottom {
    grid-row: 2;
    position: relative;
    z-index: 1;
  }

  #problems {
    margin-top: calc(env(safe-area-inset-bottom) + var(--urlbarH, 0px) - 24px);
  }

  .points {
    width: 70%;
  }

  .cta-lead-title {
    letter-spacing: 0;
    margin: 0 0 1rem;
  }

  #problems {
    padding: 4rem 0 0;
  }

  .problems-bg::before {
    content: "";
    background: #111;
    width: 100%;
    height: 6rem;
    position: absolute;
  }

  #problems .card {
    margin-top: 0;
  }

  #choice {
    text-align: left;
    padding: 0;
  }

  .choice-h2 {
    text-align: center;
  }

  .choice-sub {
    margin: 0 0 3rem;
    text-align: center;
  }

  .choice-desc {
    line-height: 1.8;
  }

  .choice-strong {
    line-height: 1.6;
    margin: 3rem auto;
  }

  .choice-caution {
    line-height: 1.6;
  }


  .chips.two {
    grid-template-columns: 1fr;
    margin: 0 0 5rem;
  }

  .trophy-foot {
    margin: 3rem auto;
  }

  #achievements .corp {
    width: 80%;
    margin: 0 auto 4rem;
  }

  .achv-ttl {
    line-height: 1.6;
  }

  #achievements {
    padding: 6rem 0;
    text-align: left;
  }

  .achv-lead {
    margin: 0 0 6rem;
  }

  .trophy-cards li {
    flex: 0 1 calc((100% - 1.6rem) / 2);
    /* flex: 0 1 100%; */
  }

  .badge-head {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .badge-head p {
    text-align: left;
    font-feature-settings: "palt";
  }

  .badge-text small {
    text-align: left;
    font-feature-settings: "palt";
    margin: 0 0 2rem;
  }

  .nummark {
    width: 50%;
    margin: 2rem auto 0;
  }

  #results {
    padding: 3rem 0 0;
  }

  .results-copy {
    margin: 3rem 0;
    line-height: 2;
  }

  .results-copy strong {
    padding: 0 0.5rem;
  }

  .cta-band {
    margin-top: 0;
    padding: 2rem 0;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom) + var(--urlbarH, 0px));
    width: 100%;
  }


  .cta-lead {
    margin-bottom: 2rem;
  }

  .cta-band.results-bottom {
    padding: 3rem 0;
  }

  #service {
    padding: 2rem 0 7rem;
  }

  .chart-card {
    margin: 0 auto 5rem;
  }

  .sec-lead {
    text-align: left;
  }

  .grid4 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid4 li {
    padding: 2.5rem;
  }

  .badge-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem;
  }

  .badge-box figure {
    flex: 0 0 auto;
    width: 220px;
  }

  .btn-orange {
    width: 90%;
  }

  .phone-mock {
    gap: 3rem;
  }

  .phone-mock li {
    height: 10rem;
  }

  #plan {
    padding: 1rem 0 6rem;
  }

  .plan-ttl {
    margin-bottom: 4rem;
  }

  .plan-note {
    margin-bottom: 3rem;
  }

  .plan-footnotes {
    margin: 3rem auto 1rem;
  }

  #contact {
    padding: 6rem 0;
  }

  #contact .brand-block {
    margin: 6rem auto 0;
  }

  .tel-link img {
    max-width: 3rem;
    width: 10%;
  }

  #contact .tag {
    margin-bottom: 4rem;
  }

  #entry-form {
    max-width: 100%;
    padding: 0 2rem 2rem;
  }

  .btn {
    padding: 1.5rem 0;

  }

  .results-title img {
    width: 70%;
  }

  .plan-table {
    margin: 0;
  }

  .chip:before {
    right: -7px;
    top: -3px;
    width: 15px;
    height: 15px;
  }

  #page-top {
    width: 5rem;
    height: 5rem;
    right: 1rem;
    bottom: 1rem;
  }

  #page-top a {
    width: 5rem;
    height: 5rem;
  }

  #page-top a::before {
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
  }
}