:root {
  --mu-navy: #0c3349;
  --mu-orange: #f26700;
  --mu-off-white: #f7f4ef;
}

.mu-fv,
.mu-fv * {
  box-sizing: border-box;
}

.mu-fv {
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  color: var(--mu-navy);
  background: var(--mu-off-white);
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow: hidden;
  padding:0;
}

.mu-fv__header {
  width: 100%;
  height: 88px;
  min-height: 88px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(12, 51, 73, 0.1);
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  position: relative;
  z-index: 20;
}

.mu-fv__logo {
  flex: 0 0 auto;
}

.mu-fv__logo a {
  color: var(--mu-navy);
  display: block;
  text-decoration: none;
}

.mu-fv__logo span {
  margin-bottom: 3px;
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.mu-fv__logo strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.mu-fv__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.mu-fv__nav a {
  color: var(--mu-navy);
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.mu-fv__nav a:hover,
.mu-fv__nav a:focus-visible {
  color: var(--mu-orange);
}

.mu-fv__consult {
  color: #fff;
  background: var(--mu-orange);
  border: 2px solid var(--mu-orange);
  border-radius: 5px;
  padding: 12px 21px;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mu-fv__consult:hover,
.mu-fv__consult:focus-visible {
  color: var(--mu-orange);
  background: #fff;
}

.mu-fv__header .menu-icon {
  width: 32px;
  height: 25px;
  margin-left: 2px;
  flex: 0 0 auto;
  display: flex;
}

.mu-fv__header #navMenu a {
  color: #fff;
}

.mu-fv__stage {
  width: 100%;
  max-width: 100vw;
  min-height: max(640px, calc(100svh - 88px));
  position: relative;
  overflow: hidden;
}

.mu-fv__media {
  position: absolute;
  inset: 0;
  background: #0c3349;
}

.mu-fv__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(12, 51, 73, 0.09), transparent 45%);
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.mu-fv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  position: absolute;
  inset: 0;
  transform: scale(1.045);
  transition:
    opacity 900ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 3900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.mu-fv__image.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.mu-fv__overlay {
  display: contents;
}

.mu-fv__copy {
  width: min(58%, 880px);
  min-height: 100%;
  background: linear-gradient(90deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.94) 72%, rgba(247, 244, 239, 0) 100%);
  padding: 56px 40px 180px clamp(36px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
}

.mu-fv__label {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mu-fv__label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--mu-orange);
  display: block;
}

.mu-fv__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.045em;
}

.mu-fv__title span {
  display: block;
  white-space: nowrap;
}

.mu-fv__sub {
  margin: 26px 0 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mu-fv__form {
  width: min(1320px, calc(100% - 48px));
  min-height: 126px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(12, 51, 73, 0.09);
  border-radius: 10px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  transform: translateX(-50%);
  box-shadow: 0 16px 42px rgba(12, 51, 73, 0.18);
}

.mu-fv__form-heading {
  border-right: 1px solid rgba(12, 51, 73, 0.16);
  padding-right: 20px;
}

.mu-fv__form-heading strong,
.mu-fv__form-heading span {
  display: block;
}

.mu-fv__form-heading strong {
  font-size: 18px;
  line-height: 1.45;
}

.mu-fv__form-heading span {
  color: #66747d;
  margin-top: 7px;
  font-size: 12px;
}

.mu-fv__form-body,
.mu-fv__form-body .wpcf7 {
  width: 100%;
  min-width: 0;
}

.mu-fv__form .wpcf7 form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
}

.mu-fv__form-fields {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) minmax(150px, 1.1fr) minmax(175px, 0.9fr);
  align-items: start;
  gap: 10px;
}

.mu-fv__field,
.mu-fv__submit-wrap {
  min-width: 0;
  margin: 0;
  position: relative;
}

.mu-fv__form .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  position: relative;
}

.mu-fv__form .wpcf7 form input.wpcf7-form-control:not([type="submit"]),
.mu-fv__form .wpcf7 form select.wpcf7-form-control {
  width: 100%;
  height: 52px;
  min-height: 52px;
  color: #263c48;
  background: #fff;
  border: 1px solid #ccd3d7;
  border-radius: 4px;
  margin: 0;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  box-shadow: none;
}

.mu-fv__form input::placeholder {
  color: #78858c;
  opacity: 1;
}

.mu-fv__form select.wpcf7-form-control {
  appearance: auto;
}

.mu-fv__form .wpcf7 form input.wpcf7-form-control:focus-visible,
.mu-fv__form .wpcf7 form select.wpcf7-form-control:focus-visible,
.mu-fv__form .wpcf7 form input.wpcf7-submit:focus-visible,
.mu-fv__form-fallback:focus-visible {
  outline: 3px solid rgba(242, 103, 0, 0.42);
  outline-offset: 2px;
}

.mu-fv__form .wpcf7 form input.wpcf7-submit,
.mu-fv__form-fallback {
  width: 100%;
  min-height: 52px;
  color: #fff;
  background: #f41717;
  border: 1px solid #f41717;
  border-radius: 4px;
  margin: 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mu-fv__form .wpcf7 form input.wpcf7-submit:hover,
.mu-fv__form-fallback:hover {
  opacity: 0.82;
}

.mu-fv__submit-note {
  color: #66747d;
  margin-top: 5px;
  display: block;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}

.mu-fv__form .wpcf7-spinner {
  margin: 0;
  position: absolute;
  right: 4px;
  top: 14px;
}

.mu-fv__form .wpcf7-not-valid-tip {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
  position: absolute;
  left: 0;
  top: 100%;
}

.mu-fv__form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.4;
}

.mu-sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  position: absolute;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .mu-fv__header {
    height: 80px;
    min-height: 80px;
    padding-inline: 24px;
    gap: 18px;
  }

  .mu-fv__nav {
    gap: 18px;
  }

  .mu-fv__stage {
    min-height: max(650px, calc(100svh - 80px));
  }

  .mu-fv__copy {
    width: 65%;
    padding: 48px 28px 180px 44px;
  }

  .mu-fv__title {
    font-size: clamp(38px, 4.5vw, 46px);
  }

  .mu-fv__form {
    width: calc(100% - 28px);
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 16px;
  }

  .mu-fv__form-heading {
    padding-right: 12px;
  }

  .mu-fv__form-heading strong {
    font-size: 15px;
  }

  .mu-fv__form-fields {
    grid-template-columns: minmax(90px, 1fr) minmax(90px, 1fr) minmax(115px, 1.1fr) minmax(135px, 1fr);
    gap: 6px;
  }

  .mu-fv__form .wpcf7 form input.wpcf7-form-control:not([type="submit"]),
  .mu-fv__form .wpcf7 form select.wpcf7-form-control,
  .mu-fv__form .wpcf7 form input.wpcf7-submit {
    padding-inline: 9px;
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-top: 72px;
  }

  .mu-fv {
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    overflow: hidden;
  }

  .mu-fv__header {
    height: 72px;
    min-height: 72px;
    padding: 0 20px;
    gap: 14px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(12, 51, 73, 0.1);
  }

  body.admin-bar .mu-fv__header {
    top: 46px;
  }

  .mu-fv__logo span {
    font-size: 8px;
  }

  .mu-fv__logo strong {
    font-size: 29px;
  }

  .mu-fv__nav,
  .mu-fv__consult {
    display: none;
  }

  .mu-fv__header .menu-icon {
    margin-left: auto;
    display: flex;
  }

  .mu-fv__stage {
    width: 100vw;
    max-width: 100vw;
    min-height: max(640px, calc(100svh - 72px));
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .mu-fv__media {
    height: auto;
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .mu-fv__media::after {
    background: linear-gradient(
      180deg,
      rgba(12, 51, 73, 0.02) 0%,
      rgba(12, 51, 73, 0.04) 34%,
      rgba(12, 51, 73, 0.48) 64%,
      rgba(12, 51, 73, 0.9) 100%
    );
  }

  .mu-fv__image {
    object-position: 67% center;
  }

  .mu-fv__image--2 {
    object-position: 80% center;
  }

  .mu-fv__image--3 {
    object-position: 58% center;
  }

  .mu-fv__overlay {
    width: 100%;
    min-height: max(640px, calc(100svh - 72px));
    padding: 42px 0 max(18px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
  }

  .mu-fv__copy {
    width: 100%;
    max-width: 100vw;
    min-height: 0;
    color: #fff;
    background: transparent;
    padding: 0 20px 18px;
    position: relative;
    inset: auto;
    text-shadow: 0 2px 18px rgba(4, 25, 37, 0.38);
  }

  .mu-fv__label {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .mu-fv__label::before {
    width: 24px;
  }

  .mu-fv__title {
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.4;
    letter-spacing: 0.025em;
  }

  .mu-fv__title span {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mu-fv__sub {
    margin-top: 12px;
    font-size: 13px;
  }

  .mu-fv__form {
    width: calc(100% - 28px);
    max-width: 480px;
    min-height: 0;
    border-radius: 8px;
    margin: 0 auto;
    padding: 16px 14px 14px;
    display: block;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 38px rgba(4, 25, 37, 0.28);
  }

  .mu-fv__form-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 51, 73, 0.13);
    margin-bottom: 12px;
    padding: 0 2px 10px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
  }

  .mu-fv__form-heading strong {
    font-size: 16px;
  }

  .mu-fv__form-heading span {
    margin-top: 0;
    flex: 0 0 auto;
    font-size: 10px;
  }

  .mu-fv__form-fields {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .mu-fv__form-fields .mu-fv__field:nth-child(3),
  .mu-fv__form-fields .mu-fv__submit-wrap {
    grid-column: 1 / -1;
  }

  .mu-fv__form .wpcf7 form input.wpcf7-form-control:not([type="submit"]),
  .mu-fv__form .wpcf7 form select.wpcf7-form-control,
  .mu-fv__form .wpcf7 form input.wpcf7-submit,
  .mu-fv__form-fallback {
    height: 46px;
    min-height: 46px;
    padding-inline: 9px;
    font-size: 13px;
  }

  .mu-fv__form .wpcf7-not-valid-tip {
    margin-top: 4px;
    font-size: 11px;
    position: static;
  }

  .mu-fv__submit-note {
    margin-top: 7px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mu-fv__image {
    transform: none;
    transition: none;
  }
}

 .mu-voice-section {
    padding: 0
  }

  .mu-voice-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    display: grid
  }

  #cta .fv-cta {
    width: 30%;
    margin: 0 auto;
  }

  .mu-voice-card {
    background: #f1f1f1;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative
  }

  .mu-voice-card:before {
    content: "";
    background: #f1f1f1;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%)rotate(45deg)
  }

  .mu-voice-card__icon {
    z-index: 2;
    width: 100px;
    margin: 0 auto 20px;
    position: relative
  }

  .mu-voice-card__icon img {
    object-fit: cover;
    border-radius: 50%;
    width: 100px;
    height: 100px
  }

  .mu-voice-card__title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6
  }

  .mu-voice-card__content {
    text-align: left;
    font-size: 16px;
    line-height: 2
  }

  .mu-voice-card__content p {
    margin-bottom: 1.5em
  }

  .mu-pagination {
    text-align: center;
    margin-top: 60px
  }

  .mu-voice-card__client {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700
  }

  .voice-more {
    text-align: center;
    margin-top: 40px
  }

  .voice-more a {
    color: #fff;
    background: #0c3349;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex
  }

  .voice-more a:hover {
    opacity: .8;
    transform: translateY(-2px)
  }

  #cta .tel_cta {
    background-color: #FF7A00;
    margin-top: 20px;
  }

  @media screen and (max-width:1024px) {
    .mu-voice-grid {
      grid-template-columns: repeat(2, 1fr)
    }
  }

  @media screen and (max-width:768px) {
    .mu-voice-section {
      padding: 0
    }

    .mu-voice-grid {
      grid-template-columns: 1fr;
      gap: 24px
    }

    .mu-voice-card {
      border-radius: 20px;
      padding: 30px 24px
    }

    .mu-voice-card__title {
      margin-bottom: 30px;
      font-size: 18px
    }

    h2 {
      font-size: 22px !important
    }
  }

  .voice-slider-section {
    background: #fff;
    padding: 100px 0
  }

  .voice-swiper {
    padding: 20px 10px 60px
  }

  .voice-swiper .swiper-slide {
    height: auto
  }

  .voice-swiper .mu-voice-card {
    height: 100%
  }

  .fv {
    color: #111;
    background: url(https://mu-setsubi.com/wp-content/themes/mu/img/hero2.webp) 50%/cover no-repeat;
    padding: 0;
    font-family: Noto Sans JP, sans-serif;
    position: relative;
    overflow: hidden
  }

  .fv:before {
    content: "";
    z-index: 0;
    background: linear-gradient(90deg, #fffffff5 0%, #ffffffe6 34%, #ffffff59 58%, #fff0 100%), url(images/fv-bg.jpg) 100%/cover no-repeat;
    position: absolute;
    inset: 95px 0 110px
  }

  .fv-header {
    z-index: 2;
    background: #fff;
    align-items: center;
    gap: 40px;
    height: 95px;
    padding: 16px 54px;
    display: flex;
    position: relative
  }

  .fv-logo span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    display: block
  }

  .fv-logo strong {
    color: #000;
    font-family: serif;
    font-size: 42px;
    line-height: 1;
    display: block
  }

  .fv-nav {
    gap: 34px;
    margin-left: auto;
    display: flex
  }

  .fv-nav a {
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none
  }

  .fv-header-btn {
    color: #fff;
    background: #f96b00;
    border-radius: 6px;
    padding: 16px 24px;
    font-weight: 700;
    text-decoration: none
  }

  .fv-menu {
    display: none
  }

  .fv-main {
    z-index: 1;
    min-height: 650px;
    padding: 65px 0 0 64px;
    position: relative
  }

  .fv-content {
    max-width: 840px
  }

  .fv-lead {
    letter-spacing: .04em;
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 600
  }

  .fv-title {
    letter-spacing: .04em;
    margin: 0;
    font-size: 76px;
    font-weight: 900;
    line-height: 1.28
  }

  .fv-title span {
    color: #f96b00
  }

  .fv-text {
    margin: 10px 0 34px;
    font-size: 24px;
    line-height: 1.9;
    font-weight: 500;
  }

  .fv-text em {
    color: #0c3349;
    font-style: normal
  }

  .fv-points {
    background: #fffffff2;
    border-radius: 8px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 855px;
    padding: 16px 0;
    display: grid;
    box-shadow: 0 8px 24px #00000014
  }

  .fv-point {
    text-align: center;
    border-right: 1px dotted #bbb;
    padding: 0 18px
  }

  .fv-point:last-child {
    border-right: 0
  }

  .fv-icon {
    max-width: 42px;
    margin: 0 auto
  }

  .fv-icon img {
    width: 100%
  }

  .fv-point p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55
  }

  .fv-bottom {
    background-color: #fff;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    margin-top: -28px;
    padding: 20px 64px;
    display: grid;
    position: relative
  }

  .fv-price,
  .fv-cta {
    border-radius: 6px;
    min-height: 100px
  }

  .fv-price {
    background: #fff;
    border: 1px solid #f96b00;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    padding-bottom: 2%;
    font-weight: 800;
    display: flex
  }

  .fv-price p {
    text-align: center;
    margin: 0;
    font-size: 22px;
    font-weight: 500
  }

  .fv-price strong {
    color: #f96b00;
    font-size: 64px;
    line-height: 1
  }

  .fv-price strong span {
    font-size: 28px
  }

  .fv-cta {
    color: #fff;
    background: #f41717;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
    animation: 2s infinite shakeInterval;
    display: flex;
    box-shadow: 0 5px #991010;
    border-radius: 50px;
  }

  .fv-cta small {
    font-size: 16px
  }

  .fv-message {
    color: #fff;
    text-align: center;
    background: #0c3349;
    padding: 20px 16px;
    font-size: 24px;
    font-weight: 700;
    position: relative
  }

  .sp-n {
    display: block
  }

  .sp-b {
    display: none;
  }

  .menu-icon {
    display: none
  }

  .case-title-main {
    font-size: 1.35em;
    text-decoration: underline;
    font-weight: 700;
  }

  @media (max-width:767px) {
    .sp-b {
      display: block;
    }

    .menu-icon {
      display: flex
    }

    .fv:before {
      background: linear-gradient(#ffffffe6 0%, #ffffffa6 48%, #ffffffe6 100%), url(images/fv-bg.jpg) top/cover no-repeat;
      inset: 84px 0 0
    }

    .fv {
      background: url(https://mu-setsubi.com/wp-content/themes/mu/img/hero2-sp.webp) 50%/cover no-repeat !important
    }

    .fv-header {
      gap: 14px;
      height: 84px;
      padding: 12px 18px
    }

    .fv-logo span {
      font-size: 10px
    }

    .fv-logo strong {
      font-size: 32px
    }

    .fv-nav {
      display: none
    }

    .fv-header-btn {
      border-radius: 5px;
      margin-left: auto;
      padding: 12px 14px;
      font-size: 13px
    }

    .fv-menu {
      background: 0 0;
      border: 0;
      flex-direction: column;
      justify-content: space-between;
      width: 34px;
      height: 28px;
      padding: 0;
      display: flex
    }

    .fv-menu span {
      background: #111;
      height: 3px;
      display: block
    }

    .fv-main {
      min-height: auto;
      padding: 24px 20px 24px
    }

    .fv-lead {
      margin-bottom: 0px;
      font-size: 12px
    }

    .fv-title {
      font-size: 45px;
      line-height: 1.28
    }

    .fv-text {
      margin-bottom: 28px;
      font-size: 17px;
      line-height: 1.9
    }

    .fv-text br {
      display: none
    }

    .fv-points {
      grid-template-columns: 1fr 1fr;
      margin-top: 28px;
      padding: 0 5px
    }

    .fv-point {
      text-align: left;
      border-bottom: 1px solid #eee;
      border-right: 0;
      grid-template-columns: 58px 1fr;
      align-items: center;
      gap: 14px;
      padding: 20px 0;
      display: grid
    }

    .fv-point:last-child {
      border-bottom: 0
    }

    .fv-icon {
      max-width: 33px
    }

    .fv-point {
      grid-template-columns: 50px 1fr;
      gap: 0;
      padding: 14px 0
    }

    .fv-point p {
      font-size: 16px
    }

    .fv-bottom {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 0;
      padding: 0 20px 22px
    }

    .fv-price {
      text-align: center;
      padding: 12px 16px;
      display: block
    }

    .fv-price p {
      margin-bottom: 12px;
      font-size: 18px
    }

    .fv-price strong {
      font-size: 52px
    }

    .fv-price strong span {
      font-size: 22px
    }

    .fv-cta {
      min-height: 86px;
      font-size: 21px
    }

    .fv-message {
      padding: 18px 24px;
      font-size: 17px;
      line-height: 1.8
    }

    .sp-n {
      display: none
    }

    .fv-bottom {
      background-color: #0000
    }

    #cta .fv-cta {
      width: 90%;
    }

    .fv-header-btn {
      visibility: hidden;
    }
  }
