:root {
  --navy: #003c5c;
  --deep: #00344f;
  --blue: #0a78b5;
  --cyan: #13b8d1;
  --green: #05c85f;
  --orange: #ff9400;
  --gold: #d6a33b;
  --paper: #f5f7f8;
  --text: #04283a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #dfe5e7;
  color: var(--text);
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
}

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

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

.page {
  width: min(100%, 450px);
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0, 0, 0, .14);
  padding-bottom: 76px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #dfe8ec;
}

.logo {
  display: flex;
  align-items: center;
  width: 154px;
}

.logo img {
  width: 100%;
  height: auto;
}

.header-line {
  display: block;
  width: 136px;
}

.header-line img {
  width: 100%;
  height: auto;
}

/* First View */
.hero {
  padding: 0 0 18px;
  background: #eef1f1;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1280 / 1597;
}

.hero-main-image {
  width: 100%;
  height: auto;
}

.hero-slider {
  position: absolute;
  left: 50%;
  top: 57.8%;
  width: 94%;
  height: 19%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(24%);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.is-leaving {
  opacity: 0;
  transform: translateX(-24%);
}

.primary-button,
.line-button,
.tel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

/* Refund Simulation */
.simulation-section {
  padding: 32px 22px 28px;
  background: #e3e3e3;
}

.simulation-banner {
  margin: 0 0 26px;
}

.simulation-banner img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.simulation-heading {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 62px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d91f68 0%, #f04b89 50%, #d91f68 100%);
  box-shadow: 0 8px 0 rgba(125, 125, 125, .24), 0 10px 22px rgba(234, 29, 109, .22);
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .05em;
  animation: simulation-heading-pulse 3.2s ease-in-out infinite;
}

.simulation-caption {
  position: relative;
  margin: 16px 0 30px;
  color: #0a3f5b;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
}

.simulation-caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 9px auto 0;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 13px solid var(--orange);
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, .12));
  animation: simulation-arrow-bounce 2.4s ease-in-out infinite;
}

@keyframes simulation-heading-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.018);
    filter: brightness(1.08);
  }
}

@keyframes simulation-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

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

.simulation-card {
  min-height: 270px;
  padding: 22px 15px 14px;
  border-radius: 16px;
  background: #f7f7f7;
}

.simulation-form {
  display: grid;
  gap: 14px;
}

.simulation-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 2px;
}

.simulation-progress span {
  height: 5px;
  border-radius: 999px;
  background: #d9e3e7;
}

.simulation-progress span.is-active {
  background: var(--orange);
}

.simulation-form fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.simulation-form legend,
.input-label {
  display: block;
  margin-bottom: 8px;
  color: #17394a;
  font-size: 13px;
  font-weight: 900;
}

.simulation-step {
  display: none;
}

.simulation-step.is-active {
  display: block;
}

.simulation-form legend span,
.input-label span {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 6px;
  border-radius: 3px;
  background: #e53025;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  vertical-align: 1px;
}

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

.choice-grid label {
  display: block;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 9px 7px;
  border-radius: 4px;
  border: 1px solid #d4e1e5;
  background: #f7fafb;
  color: #17394a;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.choice-grid small {
  display: block;
  margin-top: 2px;
  color: #617680;
  font-size: 10px;
  line-height: 1.35;
}

.choice-grid input:checked + span {
  border-color: var(--orange);
  background: #fff5e6;
  box-shadow: 0 0 0 2px rgba(255, 148, 0, .16);
}

.amount-grid span {
  min-height: 46px;
}

.input-label {
  margin-bottom: 13px;
}

.input-label small {
  display: block;
  margin: 2px 0 7px;
  color: #70838c;
  font-size: 10px;
  font-weight: 700;
}

.input-label input,
.input-label select {
  display: block;
  width: 100%;
  height: 46px;
  margin-top: 7px;
  padding: 0 12px;
  border: 1px solid #cfdde2;
  border-radius: 4px;
  background: #fff;
  color: #17394a;
  font-size: 16px;
  font-family: inherit;
}

.input-label select {
  color: #5d737e;
}

.simulation-submit {
  display: block;
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-family: inherit;
  font-weight: 900;
  box-shadow: 0 4px 0 #00283d;
  cursor: pointer;
}

.simulation-submit:disabled {
  opacity: .68;
  cursor: progress;
}

.simulation-message {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  font-weight: 900;
}

.simulation-message.is-error {
  color: #d3281f;
}

.simulation-message.is-success {
  color: #007a47;
}

.simulation-back {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #607985;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

/* Shared Section Title */
.section-title-block {
  padding: 44px 18px 44px;
  background: #fff;
  text-align: center;
}

.section-title-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 34px;
  margin: 0 0 17px;
  padding: 4px 18px;
  border-radius: 999px;
  background: #a3a3a3;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.section-title-block h2 {
  margin: 0;
  color: #000;
  font-size: 20px;
  line-height: 1.42;
  text-align: center;
  font-weight: 900;
  letter-spacing: .04em;
}

/* Trouble Section */
.pain-section {
  background: #fff;
  color: #747474;
}

.pain-section .trouble-list {
  padding: 0 28px 30px;
}

.section-kicker {
  margin: 0 0 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.trouble-list {
  display: grid;
  gap: 30px;
}

.trouble-card {
  display: grid;
  gap: 22px;
  padding: 20px 20px 23px;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #777;
}

.trouble-card__lead {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
}

.trouble-card__icon {
  width: 106px;
  height: 106px;
  object-fit: contain;
  justify-self: start;
}

.trouble-card__lead p {
  margin: 0;
  color: #747474;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 900;
  letter-spacing: .04em;
}

.trouble-card__scene {
  width: 100%;
  height: auto;
}

.trouble-card__warning {
  width: 100%;
  height: auto;
}

.pain-explanation {
  padding: 26px 31px 42px;
  background: #fff;
  color: #000;
}

.pain-explanation h3 {
  margin: 0 0 28px;
  color: #b51c0f;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  font-weight: 900;
  letter-spacing: .12em;
}

.pain-explanation p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 900;
  letter-spacing: .04em;
}

.pain-explanation img {
  width: 150px;
  height: auto;
  margin: 18px auto 21px;
}

.pain-explanation h4 {
  margin: 0 0 35px;
  color: #000;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
  font-weight: 900;
  letter-spacing: .04em;
}

.pain-explanation ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: .04em;
}

.pain-explanation li::before {
  content: "・";
}

/* Shared Sections */
.section {
  padding: 38px 18px;
  background: #fff;
}

.comparison-section {
  padding-top: 20px;
}

.gray-section {
  background: #eef1f2;
}

.headline {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
  text-align: center;
  font-weight: 900;
}

/* Comparison Section */
.comparison-table {
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid #dfe8eb;
  background: #fff;
}

.table-row {
  display: grid;
  grid-template-columns: 1.45fr .65fr .65fr .65fr;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid #e4ecef;
  font-size: 12px;
  text-align: center;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  padding-left: 10px;
  color: #24495a;
  text-align: left;
  font-weight: 800;
}

.table-head {
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.table-row em {
  color: #d49a2d;
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.table-row .table-best {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 50%;
  background: transparent;
  color: #c00000;
  font-size: 30px;
  line-height: 1;
  box-shadow: none;
}

.table-row em:not(.table-best) {
  color: #5f5f5f;
}

.table-row .table-low {
  font-size: 15px;
}

/* Flow Section */
.flow-section {
  padding: 0 21px 32px;
  background: #ededed url("../img/flow-bg.png") center top / cover no-repeat;
}

.flow-title {
  padding: 44px 0 44px;
  background: transparent;
}

.flow-title .section-title-label {
  min-width: 120px;
  min-height: 34px;
  margin-bottom: 17px;
  padding: 4px 18px;
  font-size: 16px;
}

.flow-title h2 {
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: .04em;
}

.flow-steps {
  display: grid;
  gap: 16px;
}

.flow-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 135px;
  padding: 10px 14px 10px 11px;
  border: 3px solid #7d7d7d;
  background: #fff;
}

.flow-card img {
  width: 108px;
  height: auto;
  justify-self: start;
}

.flow-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.flow-card p {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.62;
  font-weight: 800;
  letter-spacing: .02em;
}

/* CTA Section */
.line-cta {
  padding: 38px 22px;
  background: var(--deep);
  color: #fff;
  text-align: center;
}

.cta-section {
  position: relative;
  padding: 44px 36px 46px;
  background: #003c5c;
  border: 12px solid #f93085;
}

.cta-section .cta-logo {
  width: 91px;
  height: 91px;
  margin: 0 auto 26px;
}

.shield {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.line-cta h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 900;
}

.cta-section h2 {
  font-size: 28px;
  line-height: 1.35;
  text-align: left;
  letter-spacing: .03em;
}

.cta-title-image {
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto 27px;
}

.line-cta p {
  margin: 13px 0 18px;
  font-size: 12px;
}

.cta-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
  font-weight: 900;
  letter-spacing: .03em;
}

.cta-benefits {
  width: 100%;
  height: auto;
  margin: 34px auto 26px;
}

.line-button {
  background: var(--green);
  margin-bottom: 10px;
}

.cta-section .line-button,
.cta-section .tel-button {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px 18px;
  border-radius: 9px;
  box-shadow: none;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .2s ease, filter .2s ease;
}

.cta-section .line-button {
  min-height: 76px;
  margin-bottom: 0;
  background: #06c755;
}

.cta-section .line-button::after,
.cta-section .tel-button::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -55%;
  width: 35%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform: rotate(22deg);
  animation: button-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.cta-section .line-button:hover,
.cta-section .line-button:focus-visible,
.cta-section .tel-button:hover,
.cta-section .tel-button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.cta-section .line-button img {
  width: 37px;
  height: auto;
  justify-self: center;
}

.cta-section .line-button span {
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.cta-section .line-button strong {
  font-size: 20px;
  line-height: 1.6;
}

.cta-section .cta-note {
  margin: 8px 0 27px;
  text-align: center;
  font-size: 8px;
  line-height: 1.4;
}

.cta-section .cta-tel-lead {
  margin: 0 0 9px;
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
}

.tel-button {
  min-height: 50px;
  background: var(--orange);
  flex-direction: column;
  line-height: 1.15;
  font-size: 11px;
}

.tel-button strong {
  font-size: 20px;
}

.cta-section .tel-button {
  min-height: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #ff9718;
}

.cta-section .tel-button::after {
  animation-delay: 1.1s;
}

.cta-section .tel-button img {
  width: 29px;
  height: auto;
  justify-self: center;
}

.cta-section .tel-button span {
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
}

.cta-section .tel-button strong {
  font-size: 22px;
  line-height: 1;
}

@keyframes button-shine {
  0% {
    left: -55%;
  }

  42%,
  100% {
    left: 120%;
  }
}


/* Reasons Section */
.why-section {
  padding: 0 16px 34px;
  background: #fff;
}

.why-title {
  padding-left: 0;
  padding-right: 0;
}

.why-title .section-title-label {
  min-width: 120px;
  min-height: 34px;
  margin-bottom: 17px;
  padding: 4px 18px;
  font-size: 16px;
}

.why-card {
  margin-bottom: 34px;
}

.why-card:last-child {
  margin-bottom: 0;
}

.why-heading {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 12px;
  align-items: end;
  margin-bottom: 13px;
}

.why-heading span {
  grid-column: 1 / 2;
  color: #b38a2a;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .16em;
}

.why-heading strong {
  grid-column: 1 / 2;
  color: #111;
  font-size: 39px;
  line-height: .9;
  font-weight: 900;
}

.why-heading h3 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  margin: 0;
  color: #052f49;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #b7c6cc;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.why-card img {
  width: 100%;
  height: 194px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 21px;
}

.why-card p {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.78;
  font-weight: 800;
}

.why-card p strong {
  color: #093a5a;
  font-weight: 900;
}

.why-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 22px;
  padding: 18px 17px 18px 18px;
  border-left: 3px solid #ff9400;
  border-radius: 5px;
  background: #f5f5f5;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.why-note strong {
  color: #333;
  font-weight: 800;
}

.why-note span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff9400;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

/* Results Section */
.results-section {
  padding: 0 33px 38px;
  background: #f9f9f9;
}

.results-title {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 42px;
  background: transparent;
}

.results-list {
  display: grid;
  gap: 28px;
}

.results-list img {
  width: 100%;
  height: auto;
}

.results-note {
  margin: 27px 0 0;
  color: #6f6f6f;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  font-weight: 900;
}

/* Voice Section */
.voice-section {
  padding: 0 16px 38px;
  background: #f1f0eb;
}

.voice-title {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}

.voice-list {
  display: grid;
  gap: 24px;
}

.voice-card {
  padding: 28px 25px 27px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(24, 24, 24, .08);
}

.voice-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e3e1dc;
}

.voice-head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.voice-head h3 {
  margin: 0 0 8px;
  color: #001e32;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
}

.voice-head p {
  margin: 0;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.voice-card p {
  margin: 0;
  color: #3c4b57;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
}

/* Price Section */
.price-section {
  padding: 0 15px 44px;
  background: #f2f2f2 url("../img/flow-bg.png") center top / cover no-repeat;
}

.price-title {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}

.price-icon {
  width: 121px;
  height: auto;
  margin: -6px auto 29px;
}

.price-panels {
  display: grid;
  gap: 18px;
}

.price-panels img {
  width: 100%;
  height: auto;
}

.price-description {
  margin: 27px 0 0;
  color: #777;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 900;
  letter-spacing: .04em;
}

/* FAQ Section */
.faq-section {
  padding: 0 27px 42px;
  background: #fff;
}

.faq-title {
  padding-left: 0;
  padding-right: 0;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #f2f2f2;
  border-radius: 2px;
}

.faq-question {
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 0 15px;
  border: 0;
  background: transparent;
  color: #333;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: #d46a00;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.faq-answer span {
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.faq-question strong {
  color: #333;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.faq-question em {
  position: relative;
  width: 14px;
  height: 14px;
  justify-self: end;
  font-style: normal;
}

.faq-question em::before,
.faq-question em::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 8px;
  height: 1.5px;
  background: #333;
}

.faq-question em::before {
  left: 0;
  transform: rotate(45deg);
}

.faq-question em::after {
  right: 0;
  transform: rotate(-45deg);
}

.faq-item.is-open .faq-question em::before {
  transform: rotate(-45deg);
}

.faq-item.is-open .faq-question em::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 0 15px 22px;
}

.faq-item.is-open .faq-answer {
  display: grid;
}

.faq-answer p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
}

.faq-answer p strong {
  color: #111;
  font-weight: 900;
}

.final-cta {
  padding-bottom: 48px;
}

.sticky-footer-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 8px;
  width: min(100%, 450px);
  padding: 9px 10px max(9px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .12);
  transform: translateX(-50%);
}

.sticky-footer-cta a {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 7px 10px;
  border-radius: 7px;
  border: 2px solid currentColor;
  background: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  overflow: hidden;
}

.sticky-footer-cta img {
  width: 29px;
  height: auto;
  flex: 0 0 auto;
}

.sticky-footer-cta span {
  display: block;
  text-align: center;
}

.sticky-footer-line {
  color: #05c85f;
}

.sticky-footer-tel {
  color: #ff9718;
}

.sticky-footer-tel img {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(57%) sepia(91%) saturate(1223%) hue-rotate(353deg) brightness(102%) contrast(101%);
}

@media (min-width: 700px) {
  body {
    padding: 28px 0;
  }

  .sticky-footer-cta {
    bottom: 28px;
    border-radius: 10px;
  }
}
