@charset "UTF-8";
/*----------------------------------
    レスポンシブ用クランプ関数
    1440pxのvwで画面幅を縮め、画面幅768pxまでデザインを維持したい時
    768pxでは極端に小さくなるため、ここでは960pxの値を維持させる
-----------------------------------*/
/*----------------------------------
clamp-vw関数
VWでフォントサイズを制限する関数
$min-font: 最小フォントサイズ（px）
$max-font: 最大フォントサイズ（px）
$min-viewport: VW最小値（初期値: 320px）
$max-viewport: VW最大値（初期値: 1024px）
-----------------------------------*/
html {
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
  color: #000;
  overflow-x: hidden;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.inner {
  margin-inline: auto;
  max-width: 550px;
  padding-inline: min(3.4090909091vw, 1.171875rem);
  background: #F9F9F9;
}

.fv {
  position: relative;
  -webkit-padding-after: min(4.5454545455vw, 1.5625rem);
          padding-block-end: min(4.5454545455vw, 1.5625rem);
}
.fv::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../images/bg-fv.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.fv__company {
  font-size: min(4.99vw, 1.7153125rem);
  font-weight: 700;
  text-align: center;
  padding-block: min(2.1818181818vw, 0.75rem) min(1.1818181818vw, 0.40625rem);
  letter-spacing: -0.03em;
}
.fv__company span {
  display: inline-block;
  width: min(28.8363636364vw, 9.9125rem);
  -webkit-margin-end: min(2.2727272727vw, 0.78125rem);
          margin-inline-end: min(2.2727272727vw, 0.78125rem);
}
.fv__company span img {
  vertical-align: middle;
}
.fv__subtitle {
  font-size: min(5.5454545455vw, 1.90625rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  text-align: center;
  background: #FFCC00;
  padding-block: min(1.5454545455vw, 0.53125rem) min(0.4545454545vw, 0.15625rem);
}
.fv__title {
  font-size: min(12.7272727273vw, 4.375rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  -webkit-margin-before: min(0.7272727273vw, 0.25rem);
          margin-block-start: min(0.7272727273vw, 0.25rem);
}
.fv__title .size {
  font-size: min(11.3636363636vw, 3.90625rem);
}
.fv__title .color {
  color: #C9171E;
  font-size: min(18.1818181818vw, 6.25rem);
  font-weight: 700;
}
.fv__title .color .size {
  font-size: min(11.8181818182vw, 4.0625rem);
}
.fv__title .big-size {
  font-size: min(18.1818181818vw, 6.25rem);
  vertical-align: max(-1.0909090909vw, -0.375rem);
}
.fv__title .italic {
  display: inline-block;
  -webkit-transform: skew(-9deg) scaleX(0.92);
          transform: skew(-9deg) scaleX(0.92);
  letter-spacing: -0.02em;
}
.fv__note {
  font-size: min(2.8981818182vw, 0.99625rem);
  font-weight: 700;
  font-family: din-2014, kozuka-gothic-pr6n, sans-serif;
  -webkit-margin-before: max(-1.4545454545vw, -0.5rem);
          margin-block-start: max(-1.4545454545vw, -0.5rem);
  -webkit-margin-start: min(14.5454545455vw, 5rem);
          margin-inline-start: min(14.5454545455vw, 5rem);
}
.fv__img {
  -webkit-margin-start: min(16.6363636364vw, 5.71875rem);
          margin-inline-start: min(16.6363636364vw, 5.71875rem);
  width: min(73.6136363636vw, 25.3046875rem);
  position: relative;
  z-index: 0;
}
.fv__img::before {
  content: "";
  position: absolute;
  width: min(13vw, 4.46875rem);
  height: auto;
  aspect-ratio: 283/811;
  background: url(../images/fv-arrow.webp) no-repeat center center/contain;
  top: max(-10vw, -3.4375rem);
  left: max(-16.1818181818vw, -5.5625rem);
}
.fv__repeat {
  position: absolute;
  bottom: min(4.5454545455vw, 1.5625rem);
  left: max(-9.5454545455vw, -3.28125rem);
  width: min(43.6363636364vw, 15rem);
}
.fv__cta {
  -webkit-margin-before: max(-10.4545454545vw, -3.59375rem) !important;
          margin-block-start: max(-10.4545454545vw, -3.59375rem) !important;
  position: relative;
  z-index: 1;
}

.solution {
  position: relative;
  margin-inline: max(-3.4363636364vw, -1.18125rem);
}
.solution::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../images/bg-solution.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.solution__title {
  margin-inline: min(6.5636363636vw, 2.25625rem) min(4.2727272727vw, 1.46875rem);
}
.solution__item {
  margin-inline: max(-0.7272727273vw, -0.25rem) max(-2vw, -0.6875rem);
}
.solution__item:first-child {
  -webkit-margin-before: max(-3vw, -1.03125rem);
          margin-block-start: max(-3vw, -1.03125rem);
}
.solution__item:nth-child(2) {
  margin-inline: 0;
  margin: max(-16.3636363636vw, -5.625rem) min(5.4545454545vw, 1.875rem) 0 min(3.6363636364vw, 1.25rem);
}
.solution__item:nth-child(3) {
  -webkit-margin-before: max(-1.4545454545vw, -0.5rem);
          margin-block-start: max(-1.4545454545vw, -0.5rem);
}

.plan {
  position: relative;
  z-index: 0;
}
.plan::before {
  content: "";
  position: absolute;
  width: calc(100% + min(6.8181818182vw, 2.34375rem));
  height: auto;
  aspect-ratio: 2201/4672;
  background: url(../images/plan-bg.webp) no-repeat center top/cover;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.plan::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../images/bg-plan.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}
.plan__arrow {
  width: min(30.4545454545vw, 10.46875rem);
  margin-inline: auto;
}
.plan__title {
  -webkit-margin-before: min(7.2727272727vw, 2.5rem);
          margin-block-start: min(7.2727272727vw, 2.5rem);
  margin-inline: min(3.6363636364vw, 1.25rem);
}
.plan__item:first-child {
  -webkit-margin-before: min(7.0909090909vw, 2.4375rem);
          margin-block-start: min(7.0909090909vw, 2.4375rem);
  margin-inline: max(-6.5454545455vw, -2.25rem) min(5.4545454545vw, 1.875rem);
}
.plan__item:nth-child(2) {
  -webkit-margin-before: max(-5.6363636364vw, -1.9375rem);
          margin-block-start: max(-5.6363636364vw, -1.9375rem);
  margin-inline: min(5.6363636364vw, 1.9375rem);
}

.cta__title {
  -webkit-padding-before: min(7.2727272727vw, 2.5rem);
          padding-block-start: min(7.2727272727vw, 2.5rem);
}
.cta__button {
  max-width: 915px;
  margin-inline: auto;
  -webkit-margin-before: min(5.4545454545vw, 1.875rem);
          margin-block-start: min(5.4545454545vw, 1.875rem);
  -webkit-animation: button 2s infinite;
          animation: button 2s infinite;
}
.cta__button a {
  display: inline-block;
}
@-webkit-keyframes button {
  0% {
    -webkit-transform: translateY(0.75em);
            transform: translateY(0.75em);
  }
  50% {
    -webkit-transform: translateY(-0.25em);
            transform: translateY(-0.25em);
  }
  100% {
    -webkit-transform: translateY(0.75em);
            transform: translateY(0.75em);
  }
}
@keyframes button {
  0% {
    -webkit-transform: translateY(0.75em);
            transform: translateY(0.75em);
  }
  50% {
    -webkit-transform: translateY(-0.25em);
            transform: translateY(-0.25em);
  }
  100% {
    -webkit-transform: translateY(0.75em);
            transform: translateY(0.75em);
  }
}

.message {
  position: relative;
  -webkit-padding-after: min(34.5454545455vw, 11.875rem);
          padding-block-end: min(34.5454545455vw, 11.875rem);
  z-index: 1;
}
.message::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../images/bg-cta.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.message__icon {
  width: min(10.1818181818vw, 3.5rem);
  margin-inline: auto;
  -webkit-margin-before: min(5.9090909091vw, 2.03125rem);
          margin-block-start: min(5.9090909091vw, 2.03125rem);
}
.message__text {
  font-family: shippori-mincho, serif;
  font-size: min(3.2727272727vw, 1.125rem);
  font-weight: 500;
  margin-inline: min(5.0909090909vw, 1.75rem);
  -webkit-margin-before: min(9.4545454545vw, 3.25rem);
          margin-block-start: min(9.4545454545vw, 3.25rem);
  letter-spacing: -0.08em;
  line-height: 1.5;
}
.message__text .space {
  letter-spacing: -0.2em;
}
.message__text .margin {
  -webkit-margin-start: max(-1.5454545455vw, -0.53125rem);
          margin-inline-start: max(-1.5454545455vw, -0.53125rem);
}
.message__name {
  font-family: shippori-mincho, serif;
  font-weight: 600;
  -webkit-margin-before: min(3.0909090909vw, 1.0625rem);
          margin-block-start: min(3.0909090909vw, 1.0625rem);
  -webkit-margin-start: min(4.5454545455vw, 1.5625rem);
          margin-inline-start: min(4.5454545455vw, 1.5625rem);
}
.message__name .company {
  font-size: min(3.2727272727vw, 1.125rem);
}
.message__name .post {
  font-size: min(4.3636363636vw, 1.5rem);
}
.message__name .name {
  font-size: min(6.0909090909vw, 2.09375rem);
  -webkit-margin-start: min(2.7272727273vw, 0.9375rem);
          margin-inline-start: min(2.7272727273vw, 0.9375rem);
}
.message__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(54.6363636364vw, 18.78125rem);
  -webkit-margin-end: max(-16.4545454545vw, -5.65625rem);
          margin-inline-end: max(-16.4545454545vw, -5.65625rem);
  z-index: -1;
}

.flow {
  position: relative;
  z-index: 0;
}
.flow::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../images/bg-flow.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}
.flow__title {
  max-width: 550px;
  margin-inline: auto;
}
.flow .flow__content {
  width: min(87.2727272727vw, 30rem);
  background: #fff;
  margin-inline: auto;
  -webkit-margin-before: max(-9.0909090909vw, -3.125rem);
          margin-block-start: max(-9.0909090909vw, -3.125rem);
  padding: min(14.0909090909vw, 4.84375rem) min(6.0909090909vw, 2.09375rem) min(9.0909090909vw, 3.125rem) 0px;
}
.flow .content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow .content__item:nth-child(2n) .number {
  background: url(../images/flow-number-lightblue.webp) no-repeat center center/contain;
}
.flow .content__item:nth-child(1) .head img {
  width: min(10vw, 3.4375rem);
}
.flow .content__item:nth-child(2) .head img {
  width: min(10.0909090909vw, 3.46875rem);
}
.flow .content__item:nth-child(3) .head img {
  width: min(14.5454545455vw, 5rem);
}
.flow .content__item:nth-child(4) .head img {
  width: min(13.8181818182vw, 4.75rem);
}
.flow .number {
  background: url(../images/flow-number-blue.webp) no-repeat center center/contain;
  width: min(19.8181818182vw, 6.8125rem);
  aspect-ratio: 218/316;
  height: auto;
  font-size: min(12.4545454545vw, 4.28125rem);
  font-weight: 700;
  font-family: din-2014, kozuka-gothic-pr6n, sans-serif;
  text-align: center;
  -webkit-padding-before: min(5.4545454545vw, 1.875rem);
          padding-block-start: min(5.4545454545vw, 1.875rem);
}
.flow .wrap {
  width: min(56.5454545455vw, 19.4375rem);
}
.flow .head {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(65%, transparent), color-stop(65%, #FFFF66), to(#FFFF66));
  background: linear-gradient(transparent, transparent 65%, #FFFF66 65%, #FFFF66);
  color: #ff3333;
  font-size: min(5vw, 1.71875rem);
  font-weight: 700;
}
.flow .head span {
  display: inline-block;
  width: min(32.7272727273vw, 11.25rem);
}
.flow .head img {
  vertical-align: bottom;
}
.flow .text {
  font-size: min(4.0909090909vw, 1.40625rem);
  line-height: 1.4444444444;
  font-weight: 700;
  letter-spacing: -0.08em;
  -webkit-margin-before: min(1.8181818182vw, 0.625rem);
          margin-block-start: min(1.8181818182vw, 0.625rem);
}

.faq {
  position: relative;
  z-index: 0;
  margin-inline: max(-3.4090909091vw, -1.171875rem);
  -webkit-padding-after: min(10.2727272727vw, 3.53125rem);
          padding-block-end: min(10.2727272727vw, 3.53125rem);
}
.faq::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../images/bg-faq.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.faq__items {
  -webkit-margin-before: min(5.6363636364vw, 1.9375rem);
          margin-block-start: min(5.6363636364vw, 1.9375rem);
}
.faq__item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/question-bg.webp) no-repeat center center/cover;
  padding-inline: min(4vw, 1.375rem);
  padding-block: min(4.3636363636vw, 1.5rem) min(1.5454545455vw, 0.53125rem);
  gap: min(2.2727272727vw, 0.78125rem);
}
.faq__item .question span {
  color: #FF3333;
  font-family: din-2014, kozuka-gothic-pr6n, sans-serif;
  font-size: min(7.4545454545vw, 2.5625rem);
  font-weight: 700;
  display: inline-block;
  -webkit-margin-after: min(0.9090909091vw, 0.3125rem);
          margin-block-end: min(0.9090909091vw, 0.3125rem);
}
.faq__item .question p {
  font-weight: 700;
  font-size: min(4.0909090909vw, 1.40625rem);
  line-height: 1.3;
}
.faq__item .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: min(6.5454545455vw, 2.25rem) min(3.6363636364vw, 1.25rem);
  gap: min(4.1818181818vw, 1.4375rem);
  -webkit-margin-before: min(2.3636363636vw, 0.8125rem);
          margin-block-start: min(2.3636363636vw, 0.8125rem);
}
.faq__item .answer span {
  font-family: din-2014, kozuka-gothic-pr6n, sans-serif;
  font-size: min(7.4545454545vw, 2.5625rem);
  font-weight: 700;
}
.faq__item .answer p {
  font-weight: 500;
  font-size: min(4.0909090909vw, 1.40625rem);
  width: calc(100% - min(9.7272727273vw, 3.34375rem));
  line-height: 1.54;
}
.faq .footer-cta {
  text-align: center;
}
.faq .footer-cta .head {
  -webkit-margin-before: min(5.4545454545vw, 1.875rem);
          margin-block-start: min(5.4545454545vw, 1.875rem);
  background: url(../images/cta-head-bg.webp) no-repeat center center/contain;
  padding-block: min(3.3636363636vw, 1.15625rem);
  -webkit-padding-start: min(15.1818181818vw, 5.21875rem);
          padding-inline-start: min(15.1818181818vw, 5.21875rem);
  font-size: min(6.5454545455vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1516651063;
  text-align: left;
}
.faq .footer-cta .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(1.8181818182vw, 0.625rem);
  -webkit-margin-before: min(3.2727272727vw, 1.125rem);
          margin-block-start: min(3.2727272727vw, 1.125rem);
}
.faq .footer-cta .text p {
  background: url(../images/cta-line.webp) no-repeat center center/contain;
  font-size: min(5.9090909091vw, 2.03125rem);
  font-weight: 700;
  position: relative;
  line-height: min(20.2727272727vw, 6.96875rem);
}
.faq .footer-cta .text p span {
  position: absolute;
  font-size: min(3.6363636364vw, 1.25rem);
  top: max(-8.8181818182vw, -3.03125rem);
  left: max(-1.5454545455vw, -0.53125rem);
}
.faq .footer-cta .text img {
  width: min(20.2727272727vw, 6.96875rem);
}
/*# sourceMappingURL=style.css.map */