@keyframes slideUp {
  0% {
    transform: translate(0, 105%);
  }
  100% {
    transform: translateY(0px);
  }
}
:root {
  --fs-body: 0.875rem;
  --fs-body-m: 1rem;
  --fs-body-s: 0.75rem;
  --fs-h1: 6.4vw;
  --fs-h2: 2rem;
  --fs-h3: 1rem;
  --header-h: 54px;
  --spc-128:calc(0.5rem * 10);
  --spc-80: calc(0.5rem * 8);
  --spc-64: calc(0.5rem * 5);
  --spc-40: calc(0.5rem * 3);
  --spc-side: calc(100% - 48px);
}
@media screen and (min-width: 768px) {
  :root {
    --fs-body: 0.875rem;
    --fs-body-m: 1rem;
    --fs-body-s: 0.75rem;
    --fs-h1: calc(0.93vw + 32px);
    --fs-h2: 2.5rem;
    --fs-h3: 1.25rem;
    --spc-128: calc(0.5rem * 16);
    --spc-80: calc(0.5rem * 10);
    --spc-64: calc(0.5rem * 8);
    --spc-40: calc(0.5rem * 5);
    --spc-side: 94%;
  }
}

@keyframes shutter {
  0%, 50% {
    transform-origin: 0 100%;
  }
  60%, 100% {
    transform-origin: 100% 0%;
  }
  60% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes shutterText {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

[hidden] {
  display: none;
}

html {
  font-size: 16px;
}

body {
  overflow-y: scroll;
  line-break: normal;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

li {
  list-style: none;
}

small {
  font-size: 0.83em;
}

sub, sup {
  font-size: 0.5em;
  line-height: 0;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  margin-top: 0px;
  vertical-align: middle;
}

p strong {
  font-weight: 600;
}

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

input, button, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
}

input, button {
  line-height: normal;
  vertical-align: inherit;
}

input[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

input[type=search]:focus {
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  cursor: pointer;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

select {
  background-color: inherit;
  line-height: normal;
}

textarea {
  vertical-align: top;
  overflow: auto;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
}

body {
  font-size: var(--fs-body);
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  color: #151515;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "palt";
  line-height: 1.5;
}

main a:not([class]) {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  main a:not([class]):hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

span.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  span.pc {
    display: inline;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

::-moz-selection {
  color: #fff;
  background-color: #13C665;
}

::selection {
  color: #fff;
  background-color: #13C665;
}

.AccordionBlock {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
}
.AccordionBlock::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: #DFDFDF solid 1px;
  border-radius: 8px;
  pointer-events: none;
}

.AccordionBlock__button {
  display: flex;
  justify-content: space-between;
  gap: calc(0.5rem * 1);
  text-align: left;
  padding: calc(0.5rem * 3) calc(0.5rem * 2);
  background-color: #ffffff;
  border: #DFDFDF solid 1px;
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .AccordionBlock__button {
    padding: calc(0.5rem * 5) calc(0.5rem * 3);
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .AccordionBlock__button:hover {
    background-color: #F5F5F5;
  }
  .AccordionBlock__button:hover .AccordionBlock__icon {
    background-color: #FF6A00;
  }
}
.AccordionBlock__button.-active {
  background-color: #F5F5F5;
}
.AccordionBlock__button.-active .AccordionBlock__icon {
  background-color: #FF6A00;
}
.AccordionBlock__button.-active .AccordionBlock__icon::after {
  display: none;
}
.AccordionBlock__button.-active + .AccordionBlock__body {
  display: block;
}

.AccordionBlock__icon {
  position: relative;
  display: block;
  background-color: #151515;
  border-radius: 50px;
  width: 32px;
  height: 20px;
  align-self: center;
  transition: background-color 0.3s;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .AccordionBlock__icon {
    width: 40px;
    height: 24px;
  }
}
.AccordionBlock__icon::before, .AccordionBlock__icon::after {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #ffffff;
}
.AccordionBlock__icon::before {
  width: 8px;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .AccordionBlock__icon::before {
    width: 12px;
    height: 2px;
  }
}
.AccordionBlock__icon::after {
  width: 2px;
  height: 8px;
}
@media screen and (min-width: 768px) {
  .AccordionBlock__icon::after {
    width: 2px;
    height: 12px;
  }
}

.AccordionBlock__body {
  display: none;
  font-size: var(--fs-body-m);
  padding: calc(0.5rem * 3) calc(0.5rem * 2);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .AccordionBlock__body {
    padding: calc(0.5rem * 5) calc(0.5rem * 3);
  }
}

.Button {
  display: inline-flex;
  width: 100%;
  height: 56px;
  max-width: 300px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--fs-body-m);
  border: none;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .Button {
    width: 300px;
    height: 64px;
  }
}

.Button.-fill {
  color: #ffffff;
  background-color: #FF6A00;
  font-weight: 600;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
@media screen and (min-width: 768px) {
  .Button.-fill:hover {
    background-color: #13C665;
    transform: scale(1.03);
  }
}

.Button.-wFull {
  width: 100%;
}

.Button.-small {
  width: 100%;
  max-width: 200px;
  height: 30px;
  font-size: var(--fs-body);
  padding: 0px 8px;
}
@media screen and (min-width: 768px) {
  .Button.-small {
    width: 200px;
    height: 40px;
  }
}
.Button.-small.-wFull {
  width: 100%;
  max-width: none;
}

.Card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  color: #151515;
  padding: calc(0.5rem * 3) calc(0.5rem * 2);
  gap: 24px;
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .Card {
    padding: calc(0.5rem * 5) calc(0.5rem * 4);
  }
}
@media screen and (min-width: 1024px) {
  .Card {
    align-items: stretch;
    flex-direction: row;
  }
}

.Card.-vartical {
  flex-direction: column;
  align-items: center;
}

.Card.-voice {
  position: relative;
}
.Card.-voice::after {
  content: none;
  position: absolute;
  bottom: -39px;
  left: 30%;
  width: 40px;
  height: 40px;
  background-image: url(../image/voice_arrow.svg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .Card.-voice::after {
    content: "";
  }
}

.Card.-small {
  padding: calc(0.5rem * 2);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .Card.-small {
    padding: calc(0.5rem * 3);
  }
}
.Card.-small .Card__body > * + * {
  margin-top: calc(0.5rem * 1);
}
.Card.-small .Card__body > *:last-child {
  margin-top: auto;
}
.Card.-small .Card__title {
  margin-bottom: calc(0.5rem * 1);
}

.Card.-respHolisontal {
  flex-direction: row;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .Card.-respHolisontal {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .Card.-respHolisontal {
    flex-direction: row;
  }
}
.Card.-respHolisontal .Card__title {
  text-align: left;
}

.Card__body > * + * {
  margin-top: calc(0.5rem * 2);
}
.Card__body.-hasBorder {
  border-top: #DFDFDF solid 1px;
}

.Card__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.Card__wrapper .Card__body:first-child {
  padding-bottom: calc(0.5rem * 2);
}
.Card__wrapper .Card__body:last-child {
  padding-top: calc(0.5rem * 2);
}
.Card__wrapper .Card__body.-info > *:last-child {
  margin-top: unset;
}
.Card__wrapper .Card__body.-contents {
  margin-top: auto;
}

.Card__icon {
  flex-shrink: 0;
}

.Card__title {
  font-size: var(--fs-h3);
  margin-bottom: calc(0.5rem * 2);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .Card__title {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .Card__title.-center {
    text-align: center;
  }
}

.Card__desc {
  font-weight: bold;
}

.Card__price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0px;
  font-size: 2rem;
  line-height: 1;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1024px) {
  .Card__price {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 1280px) {
  .Card__price {
    font-size: 3rem;
  }
}

.Card__unitText {
  font-size: 1rem;
  margin-left: calc(0.5rem / 2);
  align-self: flex-end;
}
@media screen and (min-width: 1024px) {
  .Card__unitText {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .Card__unitText {
    font-size: 1rem;
  }
}

.Card__taxText {
  font-size: 0.75rem;
  align-self: flex-end;
}
@media screen and (min-width: 1024px) {
  .Card__taxText {
    font-size: 0.94vw;
  }
}
@media screen and (min-width: 1280px) {
  .Card__taxText {
    font-size: 0.75rem;
  }
}

.Card__head {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: calc(0.5rem * 2);
}
@media screen and (min-width: 768px) {
  .Card__head {
    gap: calc(0.5rem * 3);
  }
}
.Card__head .Card__title {
  margin: 0px;
  text-align: left;
}

.Card__tagList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: calc(0.5rem * 1);
}
@media screen and (min-width: 768px) {
  .Card__tagList {
    gap: calc(0.5rem * 2);
  }
}

.Card__tagItem {
  background-color: #13C665;
  color: #ffffff;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  font-size: var(--fs-body);
  font-weight: 600;
}

.Card__pointText {
  color: #13C665;
}

.Container {
  width: var(--spc-side);
  margin-left: auto;
  margin-right: auto;
}

.Container.-large {
  max-width: 100rem;
}

.Container.-medium {
  max-width: 75rem;
}

.Container.-small {
  max-width: 50rem;
}

.FlowList {
  position: relative;
  display: flex;
  gap: calc(0.5rem * 3);
  counter-reset: num;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .FlowList {
    flex-direction: row;
  }
}
.FlowList::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0px);
  width: 1px;
  height: 100%;
  background-color: #DFDFDF;
}
@media screen and (min-width: 768px) {
  .FlowList::after {
    top: 50%;
    left: 0px;
    transform: translate(0px, -50%);
    width: 100%;
    height: 1px;
  }
}

.FlowList__item {
  position: relative;
  padding: calc(0.5rem * 3) calc(0.5rem * 2);
  border-radius: 8px;
  border: 1px solid #DFDFDF;
  background-color: #FFF;
  flex-basis: 25%;
}
@media screen and (min-width: 768px) {
  .FlowList__item {
    padding: calc(0.5rem * 4) calc(0.5rem * 3);
  }
}
.FlowList__item::before {
  counter-increment: num;
  content: "0" counter(num);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -12px;
  left: 12px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  color: #DFDFDF;
  background-color: #FFF;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .FlowList__item::before {
    font-size: 2.5rem;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.Form > * + * {
  margin-top: calc(0.5rem * 3);
}
@media screen and (min-width: 768px) {
  .Form > * + * {
    margin-top: calc(0.5rem * 5);
  }
}

.Form__unit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.Form__unit.-contentCenter {
  align-items: center;
}

.Form__label {
  display: block;
  font-weight: bold;
  font-size: var(--fs-body-m);
}
.Form__label span {
  font-size: 0.75rem;
}

.Form__control {
  border: 1px solid #DFDFDF;
  font-size: var(--fs-body);
  padding: 1.3em;
  border-radius: 8px;
  font-weight: 400;
}

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

.Form__control::-moz-placeholder {
  color: #888;
  font-weight: 300;
}

.Form__control::placeholder {
  color: #888;
  font-weight: 300;
}

.Form__checkbox {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
  font-size: 0.875rem;
}

.Grid {
  display: flex;
}
.Grid.-resp {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .Grid.-resp {
    flex-direction: row;
  }
}
.Grid.-respL {
  flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .Grid.-respL {
    flex-direction: row;
  }
}

.Grid.-spc5 {
  gap: calc(0.5rem * 3);
}
@media screen and (min-width: 768px) {
  .Grid.-spc5 {
    gap: calc(0.5rem * 5);
  }
}

.Grid.-spc3 {
  gap: calc(0.5rem * 3);
}

.Grid.-col2 > * {
  flex-basis: 50%;
}

.Grid.-col3 {
  flex-wrap: wrap;
}
.Grid.-col3.-spc3 {
  gap: calc(0.5rem * 2);
}
@media screen and (min-width: 768px) {
  .Grid.-col3.-spc3 {
    gap: calc(0.5rem * 3);
  }
}
.Grid.-col3.-spc3 > * {
  flex-basis: calc(33.33% - 16px);
}
.Grid.-col3.-spc3.-respCol2 > * {
  flex-basis: calc(50% - 8px);
}
@media screen and (min-width: 768px) {
  .Grid.-col3.-spc3.-respCol2 > * {
    flex-basis: calc(33.33% - 16px);
  }
}
.Grid.-col3.-spc3.-respCol1 > * {
  flex-basis: 100%;
}
@media screen and (min-width: 1024px) {
  .Grid.-col3.-spc3.-respCol1 > * {
    flex-basis: calc(33.33% - 16px);
  }
}
.Grid.-col3.-spc5 {
  gap: calc(0.5rem * 3);
}
@media screen and (min-width: 768px) {
  .Grid.-col3.-spc5 {
    gap: calc(0.5rem * 5);
  }
}
.Grid.-col3.-spc5 > * {
  flex-basis: calc(33.33% - 26.6666666667px);
}
.Grid.-col3.-spc5.-respCol1 > * {
  flex-basis: 100%;
}
@media screen and (min-width: 1024px) {
  .Grid.-col3.-spc5.-respCol1 > * {
    flex-basis: calc(33.33% - 26.6666666667px);
  }
}

.HeroArea {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  width: var(--spc-side);
  margin-left: auto;
  margin-right: auto;
  padding-top: 10vh;
  height: calc(100vh - 68px);
  min-height: 640px;
  max-height: 800px;
}
@media screen and (min-width: 768px) {
  .HeroArea {
    padding-top: calc(0.5rem * 8);
    min-height: none;
    max-height: none;
    height: auto;
  }
}

.HeroArea__title {
  font-size: var(--fs-h1);
  line-height: 1.5;
  font-weight: 900;
}

.HeroArea__lead {
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: calc(0.5rem * 3);
}
@media screen and (min-width: 768px) {
  .HeroArea__lead {
    font-size: 1rem;
  }
}

.HeroArea__button {
  margin-top: calc(0.5rem * 3);
  margin-bottom: var(--spc-64);
}

.HeroArea__image {
  margin-top: auto;
}
.HeroArea__image img {
  width: 45vh;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .HeroArea__image img {
    width: 34.95vw;
    min-width: 500px;
    max-width: 600px;
  }
}

.HeroArea__flexibleItem {
  display: inline-flex;
  justify-content: center;
}

.HeroArea__primaryText {
  color: #FF6A00;
  display: flex;
  overflow: hidden;
}

.HeroArea__primaryText span {
  display: block;
  transform: translate(0, 105%);
  animation: slideUp 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.HeroArea__primaryText span:nth-child(2) {
  animation-delay: 0.06s;
}
.HeroArea__primaryText span:nth-child(3) {
  animation-delay: 0.12s;
}
.HeroArea__primaryText span:nth-child(4) {
  animation-delay: 0.18s;
}
.HeroArea__primaryText span:nth-child(5) {
  animation-delay: 0.24s;
}
.HeroArea__primaryText span:nth-child(6) {
  animation-delay: 0.3s;
}
.HeroArea__primaryText span:nth-child(7) {
  animation-delay: 0.36s;
}
.HeroArea__primaryText span:nth-child(8) {
  animation-delay: 0.42s;
}
.HeroArea__primaryText span:nth-child(9) {
  animation-delay: 0.48s;
}
.HeroArea__primaryText span:nth-child(10) {
  animation-delay: 0.54s;
}
.HeroArea__primaryText span:nth-child(11) {
  animation-delay: 0.6s;
}
.HeroArea__primaryText span:nth-child(12) {
  animation-delay: 0.66s;
}

.Icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: #151515 solid 1px;
  box-shadow: -2px 2px 0px 0px #000;
}

.PageHeader {
  display: flex;
  flex-wrap: wrap;
  width: var(--spc-side);
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  padding-top: calc(0.5rem * 2);
  justify-content: space-between;
  align-items: center;
  gap: calc(0.5rem / 2);
}
@media screen and (min-width: 768px) {
  .PageHeader {
    flex-wrap: nowrap;
    padding-top: calc(0.5rem * 4);
    align-items: center;
  }
}

.PageHeader__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 8px 24px;
}
@media screen and (min-width: 768px) {
  .PageHeader__inner {
    width: auto;
    align-items: center;
    justify-content: flex-start;
  }
}

.PageHeader__title {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .PageHeader__title {
    font-size: 12px;
  }
}

.PageHeader__logo {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .PageHeader__logo {
    width: 110px;
  }
}

.PageHeader__button {
  flex-shrink: 0;
}

.PageSection {
  padding-top: var(--spc-128);
}

.HeroArea + .PageSection.-hasBg {
  padding-top: var(--spc-128);
  margin-top: calc(var(--spc-128) * -1);
}
.HeroArea + .PageSection.-hasBg .PageSection:first-child {
  margin-top: calc(0.5rem * 13);
  padding-top: 0px;
}

.PageSection.-hasBg {
  margin-top: var(--spc-128);
  padding: var(--spc-80) 0px;
  background-size: 560px;
  background-position: top center;
}

.PageSection.-bgGreen {
  background-image: url(../image/bg_pattern_t5.webp);
  background-color: #13C665;
  color: #ffffff;
  font-weight: 500;
}

.PageSection.-bgGray {
  background-image: url(../image/bg_pattern_t20.webp);
  background-color: #F5F5F5;
}

.PageSection__head {
  display: flex;
  flex-direction: column;
  gap: calc(0.5rem * 3) calc(0.5rem * 8);
}

.PageSection__head.-horizontal {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .PageSection__head.-horizontal {
    flex-direction: row;
  }
}

.PageSection__head.-center {
  align-items: left;
}
@media screen and (min-width: 768px) {
  .PageSection__head.-center {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .PageSection__head.-center .PageSection__title, .PageSection__head.-center .PageSection__info {
    align-items: center;
  }
}

.PageSection__body {
  margin-top: var(--spc-64);
}

.PageSection__title {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-h2);
  line-height: 1.5;
  white-space: nowrap;
  font-weight: 900;
}
.PageSection__title::before {
  content: attr(data-subtitle);
  color: #FF6A00;
  font-size: 0.4em;
}

@media screen and (min-width: 768px) {
  .PageSection__lead {
    text-align: center;
  }
}

.PageSection__strongText {
  font-weight: bold;
}

.ServiceBanner {
  position: relative;
  background-color: #f7f7fa;
  padding: calc(0.5rem * 3) 0px;
  margin-top: var(--vertical-spc15);
}
@media screen and (min-width: 768px) {
  .ServiceBanner {
    padding: calc(0.5rem * 5) 0px;
  }
}

main + .ServiceBanner {
  margin-top: var(--vertical-spc20);
}

@media screen and (min-width: 768px) {
  .ServiceBanner__main {
    width: 74%;
  }
}

.ServiceBanner__subtitle {
  font-weight: 700;
  font-size: calc(0.26vw + 12px);
}
@media screen and (min-width: 768px) {
  .ServiceBanner__subtitle {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.ServiceBanner__title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
  margin-top: calc(0.5rem / 2);
}
@media screen and (min-width: 768px) {
  .ServiceBanner__title {
    font-size: 2.375rem;
    max-width: none;
  }
}
.ServiceBanner__title.-blue {
  color: #3755a8;
}

.ServiceBanner__button {
  display: inline-block;
  position: relative;
  margin-top: calc(0.5rem * 1);
  color: #ffffff;
  background-color: #3755a8;
  border: #3755a8 solid 2px;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.75rem 1.5rem 0.7rem;
  line-height: 1.6;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 56px;
  font-weight: 600;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ServiceBanner__button:hover {
    background-color: #ffffff;
    color: #3755a8;
  }
}

.ServiceBanner__icon {
  display: none;
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: 0px;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .ServiceBanner__icon {
    display: block;
    top: auto;
    right: 9%;
    width: 20%;
  }
}

.Stack.-spc2 > * + * {
  margin-top: calc(0.5rem * 2);
}

.Stack.-spc3 > * + * {
  margin-top: calc(0.5rem * 3);
}

.PageFooter {
  text-align: center;
  padding: calc(0.5rem * 4) 0px;
  font-size: 0.75rem;
}

/* ThanksBanner */
.ThanksBanner {
  display: none;
  background-color: #13C665;
  color: #ffffff;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}
.ThanksBanner.-show {
  display: block;
}/*# sourceMappingURL=style.css.map */