@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 16px;
}

body {
  line-height: 1.6;
  font-feature-settings: "palt";
  font-family: source-han-sans-cjk-ja, sans-serif;
  color: #2c3e50;
}

.spbr {
  display: inline-block;
}

img {
  max-width: 100%;
}

/* wrap */
.wrap {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* header */
.header {
  width: 100%;
}
.header h1 {
  font-size: 1.25rem;
  font-weight: lighter;
  margin: auto;
  text-align: center;
  background-color: #1d695f;
  color: #fff;
  padding: 0.25rem;
}
.header h1 a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.h1area {
  background-color: #f2f2f2;
  margin: auto;
}
.h1area h1 {
  width: 100%;
  padding: 2rem;
  font-size: 1.75rem;
  margin: auto;
  text-align: left;
  color: #1d695f;
}

/* footer */
.footer {
  width: 100%;
  margin: auto;
  padding: 1rem 0;
  background-color: #1d695f;
  color: #fff;
}
.footer ul {
  margin: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.footer ul li {
  padding: 0 10px;
  text-align: left;
  flex-basis: 50%;
}
.footer ul li.copyright {
  text-align: center;
  margin: 1rem auto 0 auto;
  flex-basis: 100%;
}
.footer ul li a {
  text-decoration: none;
  color: #fff;
}
.footer ul li a:hover {
  color: #ffd92a;
}

/* article */
.article {
  margin: auto;
  padding: 2rem 0 4rem 0;
  text-align: left;
}
@media (max-width: 768px) {
  .article {
    padding: 0 5%;
  }
}
.article h2 {
  background-color: #f2f2f2;
  padding: 1rem;
  color: #1d695f;
  margin: 3rem auto 1rem auto;
  border-left: solid 3px #1d695f;
}
.article h3 {
  font-size: 1.25rem;
  color: #1d695f;
  margin: 2rem 0 0.75rem 0;
}
.article h4 {
  margin: 1rem 0 0.25rem 0;
}
.article p {
  text-align: left;
  margin-bottom: 1.5rem;
  line-height: 32px;
}
.article ol,
.article ul {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.article ol li,
.article ul li {
  margin-bottom: 0.75rem;
}
.article dl dt {
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.article dl dd {
  margin-bottom: 1.1rem;
}
.article a {
  text-decoration: none;
  color: #1d695f;
}
.article a:hover {
  color: #1d695f;
}

select {
  font-size: 1.1rem;
  padding: 0.75rem;
  width: 100%;
  border-radius: 5px;
  border: solid 1px #3e3a39;
  appearance: none;
  background: #fff url("../img/tryangle_icon.svg") no-repeat center right 10px/16px 16px;
  background-size: 10px;
  color: #000;
}
select option {
  font-size: 1rem;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}
button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

input {
  font-size: 1.1rem;
  padding: 0.7rem;
  width: 100%;
  border-radius: 5px;
  border: solid 1px #3e3a39;
  appearance: none;
}

.errorbox {
  display: none;
  margin: 1rem auto;
  border: 3px solid #ff6262;
  background-color: #ffe4e4;
  border-radius: 10px;
  color: #ff6262;
  padding: 1rem;
}
.errorbox p {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.errorbox ul {
  list-style: none;
  line-height: 32px;
}
.errorbox span {
  text-decoration: underline;
  font-weight: bold;
}

.inputbox {
  margin-top: 10px;
}

.inputbox-name {
  position: relative;
  font-size: 20px !important;
  text-align: left;
  color: #5d5149;
  padding-left: 1.3em;
  font-weight: bold !important;
  width: fit-content;
  letter-spacing: -0.05em;
}
.inputbox-name::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  padding-bottom: 1px;
  padding-right: 1px;
  border-radius: 50%;
  background-color: #5d5149;
  color: white;
  font-size: 15px;
}
.inputbox-name::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 20px;
  padding-bottom: 1px;
  border-radius: 5px;
  background-color: #ff936d;
  color: white;
  font-size: 0.875rem;
  font-weight: normal;
  word-break: keep-all;
}

.question_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5px;
}
.question_box label {
  position: relative;
  width: calc((100% - 10px) / 2);
  height: 55px;
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: #f2f2f2;
  cursor: pointer;
}
.question_box label input {
  display: block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #b1b1b1;
  cursor: pointer;
}
.question_box label input:checked {
  background-color: #ffd92a;
  border-color: #e1b459;
}
.question_box label input:checked + span::before {
  background-color: white;
  border: 2px solid #fff;
}
.question_box label input:checked + span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 11px;
  height: 7px;
  transform: rotate(-45deg);
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: #e1b459;
}
.question_box label > span {
  position: absolute;
  top: 50%;
  left: 15px;
  padding-left: 30px;
  transform: translateY(-50%);
  color: #5d5149;
}
.question_box label > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid #b1b1b1;
}

.reflection {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  z-index: 1;
  padding: 0 10%;
}
.reflection img {
  cursor: pointer;
  max-width: 100%;
}
.reflection:after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
}

@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.form-note {
  margin: 1.5rem 0 0;
  font-size: 14px;
  line-height: 1.2;
}

.sending_message {
  display: none;
}

.fit-img, #DebtSimulation_1 section.fuan .fuan-img, #DebtSimulation_1 .reduce-list > li h3, #DebtSimulation_1 section.reduce .cv_push, #DebtSimulation_1 section.because p.sec2_push, #DebtSimulation_1 section.because .cv_push, #DebtSimulation_1 section.because h2, #DebtSimulation_1 section.trouble .img-trouble, #DebtSimulation_1 section.trouble .img-think, #DebtSimulation_1 section.howto .arrow-img, #DebtSimulation_1 section.howto .howto-img, #DebtSimulation_1 section.howto h2 {
  position: relative;
}
.fit-img img, #DebtSimulation_1 section.fuan .fuan-img img, #DebtSimulation_1 .reduce-list > li h3 img, #DebtSimulation_1 section.reduce .cv_push img, #DebtSimulation_1 section.because p.sec2_push img, #DebtSimulation_1 section.because .cv_push img, #DebtSimulation_1 section.because h2 img, #DebtSimulation_1 section.trouble .img-trouble img, #DebtSimulation_1 section.trouble .img-think img, #DebtSimulation_1 section.howto .arrow-img img, #DebtSimulation_1 section.howto .howto-img img, #DebtSimulation_1 section.howto h2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#DebtSimulation_1,
#DebtSimulation_2 {
  display: none;
}

#DebtSimulation_1 {
  display: none;
}
#DebtSimulation_1 section.home_simulator {
  padding: 2rem 1rem;
  color: #3e3a39;
  background-color: white;
}
#DebtSimulation_1 h3,
#DebtSimulation_1 .h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
#DebtSimulation_1 span.br {
  display: inline-block;
}
#DebtSimulation_1 span.u_yellow {
  background: linear-gradient(transparent 70%, #ffd92a 0%);
}
#DebtSimulation_1 p.text {
  margin: auto;
  text-align: left;
  padding: 0 5%;
  line-height: 27px;
}
#DebtSimulation_1 section.mainvisual {
  background-color: #e6f9ff;
  display: flex;
  width: 100%;
  padding-top: 1rem;
}
#DebtSimulation_1 section.mainvisual .mv_background {
  background-image: url("../img/kn_mv_background1.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 200%;
  margin-bottom: -1px;
  width: 100%;
}
#DebtSimulation_1 section.mainvisual .mv_background .mv_content {
  display: flex;
  margin: auto;
}
#DebtSimulation_1 section.mainvisual .mv_background .mv_content picture {
  width: 100%;
  height: auto;
  margin: 0 auto -6px auto;
  padding: 0 1rem;
}
#DebtSimulation_1 section.sim_caption {
  padding: 0.5rem 0;
  color: white;
  background-color: #1d695f;
  font-weight: bold;
  position: relative;
  padding: 0.25rem 0;
}
#DebtSimulation_1 section.sim_caption p.caption {
  border-bottom: solid 2px #ffd92a;
  display: inline-block;
  font-size: 1.125rem;
}
#DebtSimulation_1 section.sim_caption p.caption_big {
  font-size: 1.8125rem;
  line-height: 1.1;
}
#DebtSimulation_1 section.sim_caption span.yellow {
  color: #ffd92a;
}
#DebtSimulation_1 section.sim_caption:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  border-bottom: 0px solid transparent;
  border-top: 30px solid #1d695f;
  border-left: 220px solid transparent;
  border-right: 220px solid transparent;
}
#DebtSimulation_1 section.sim_caption:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -25px;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 0px solid transparent;
  border-top: 14px solid #ffd92a;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
}
#DebtSimulation_1 section.howto {
  padding: 1rem 0 0;
}
#DebtSimulation_1 section.howto h2 {
  width: 94%;
  padding-top: 17.7272727273%;
  margin: 0 auto 1rem;
}
#DebtSimulation_1 section.howto .h3,
#DebtSimulation_1 section.howto p {
  margin-bottom: 1rem;
}
#DebtSimulation_1 section.howto .howto-img {
  width: 94%;
  padding-top: 30.9090909091%;
  margin: 0 auto 1rem;
}
#DebtSimulation_1 section.howto .arrow-img {
  width: 96%;
  padding-top: 52.9545454545%;
  margin: 0 auto 1rem;
}
#DebtSimulation_1 section.trouble {
  overflow: hidden;
}
#DebtSimulation_1 section.trouble h2 {
  background-color: #1d695f;
  text-align: center;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.75rem;
}
#DebtSimulation_1 section.trouble .img-think {
  width: 100%;
  padding-top: 122%;
}
#DebtSimulation_1 section.trouble .img-think::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: calc(100% + 50px);
  transform: translateX(-50%);
  background-image: url("../img/kn_trouble_bg-sp.webp");
  background-size: cover;
  background-position: bottom center;
}
#DebtSimulation_1 section.trouble .img-trouble {
  width: 97%;
  padding-top: 30.4545454545%;
  margin: 2rem auto;
}
#DebtSimulation_1 section.because {
  background-color: #e6f9ff;
  padding: 8% 5%;
  margin-top: -2.5rem;
}
#DebtSimulation_1 section.because h2 {
  width: 96%;
  padding-top: 128.2828282828%;
  margin: 0 auto;
}
#DebtSimulation_1 section.because p.strong {
  font-size: 1.5rem;
  margin: 1.5rem auto 0;
  max-width: 360px;
}
#DebtSimulation_1 section.because small {
  font-size: 0.875rem;
}
#DebtSimulation_1 section.because .cv_push {
  width: 100%;
  padding-top: 27.0202020202%;
  margin: 0 auto 1rem;
}
#DebtSimulation_1 section.because p.sec2_push {
  width: 100%;
  padding-top: 55.0505050505%;
  margin: 0 auto;
}
#DebtSimulation_1 section.reduce {
  background-color: #e6f9ff;
  padding-bottom: 1rem;
}
#DebtSimulation_1 section.reduce h2 {
  background-color: #1d695f;
  text-align: center;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.75rem;
}
#DebtSimulation_1 section.reduce .cv_push {
  width: 90%;
  padding-top: 18.6363636364%;
  margin: 0 auto 1rem;
}
#DebtSimulation_1 .reduce-list {
  padding: 2rem 1rem 4rem;
}
#DebtSimulation_1 .reduce-list > li {
  margin-top: 40px;
  list-style: none;
}
#DebtSimulation_1 .reduce-list > li h3 {
  width: 100%;
  padding-top: 44.6078431373%;
  margin: 0 auto;
}
#DebtSimulation_1 .reduce-list__heading {
  margin-bottom: 0;
  padding: 15px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#DebtSimulation_1 .reduce-list__open {
  position: relative;
  margin-bottom: 0;
  background-color: #ffdf80;
  font-weight: bold;
  padding: 2px;
}
#DebtSimulation_1 .reduce-list__open::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 16px;
  transform: rotate(122deg) skew(-24deg);
  transform-origin: center;
  width: 13px;
  height: 11px;
  border-style: solid;
  border-color: #2c3e50;
  border-width: 2px 2px 0 0;
}
#DebtSimulation_1 .reduce-list__open.open::before {
  top: 12px;
  border-width: 0 0 2px 2px;
}
#DebtSimulation_1 .reduce-list__detail {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease;
}
#DebtSimulation_1 .reduce-list__detail p {
  border-color: #ffdf80;
  border-style: solid;
  border-width: 0 3px 3px 3px;
  background-color: white;
  text-align: left;
  padding: 15px 10px;
}
#DebtSimulation_1 .reduce-list__detail p span {
  color: #f26130;
}
#DebtSimulation_1 .reduce-list__box {
  cursor: pointer;
}
#DebtSimulation_1 .cvbutton {
  animation-name: uptodown;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  padding: 0 10%;
  margin-bottom: 1rem;
}
#DebtSimulation_1 .cvbutton img {
  cursor: pointer;
}
#DebtSimulation_1 section.fuan {
  padding: 2rem 0;
}
#DebtSimulation_1 section.fuan .h2 {
  color: #1d695f;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 28px;
}
#DebtSimulation_1 section.fuan .cvbutton {
  margin-top: 3rem;
}
#DebtSimulation_1 section.fuan .fuan-img {
  width: 100%;
  padding-top: 168.6363636364%;
  margin: 0 auto;
}
#DebtSimulation_1 section.faq {
  background: #e6f9ff;
  text-align: left;
  padding: 3rem 3%;
}
#DebtSimulation_1 section.faq .faq-inner {
  max-width: 960px;
  margin: auto;
}
#DebtSimulation_1 section.faq h2 {
  color: #fff;
  background: #1d695f;
  text-align: center;
  padding: 0.5rem;
  font-size: 28px;
}
#DebtSimulation_1 section.faq .faq-block {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 0.5rem;
}
#DebtSimulation_1 section.faq .faq-q {
  position: relative;
  background: #f2f2f2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 0.5rem 3rem 0.5rem 1rem;
  cursor: pointer;
}
#DebtSimulation_1 section.faq .faq-q::before {
  content: "Q";
  color: #1d695f;
  font-size: 38px;
  margin-right: 1rem;
  font-weight: bold;
}
#DebtSimulation_1 section.faq .faq-q::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 12px;
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
  border-style: solid;
  border-width: 0 0 3px 3px;
  border-color: #2c3e50;
}
#DebtSimulation_1 section.faq .faq-q.open::after {
  top: 30px;
  border-width: 3px 3px 0 0;
}
#DebtSimulation_1 section.faq .faq-a {
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}
#DebtSimulation_1 section.faq .faq-a::before {
  content: "A";
  color: #eb651a;
  font-size: 38px;
  margin-right: 1rem;
  font-weight: bold;
}
#DebtSimulation_1 section.faq .answer-box {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease;
}
#DebtSimulation_1 .cv_push {
  padding: 0 5%;
  margin-bottom: 1rem;
}
@keyframes uptodown {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}
#DebtSimulation_1 .error_message {
  text-align: left;
  color: red;
}
#DebtSimulation_1 .follow-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 1000;
  width: 100%;
  max-width: 440px;
  transform: translateX(-50%);
  padding: 0 5px;
}
#DebtSimulation_1 .follow-banner img {
  width: 100%;
  vertical-align: bottom;
  cursor: pointer;
}

#DebtSimulation_2 h3,
#DebtSimulation_2 .h3 {
  font-size: 1.75rem;
  font-weight: bold;
}
#DebtSimulation_2 span.br {
  display: inline-block;
}
#DebtSimulation_2 br.sp {
  display: none;
}
#DebtSimulation_2 span.u_yellow {
  background: linear-gradient(transparent 70%, #ffd92a 0%);
}
#DebtSimulation_2 section.home_simulator {
  margin: 2rem auto 0;
  color: #3e3a39;
  padding: 1rem;
  margin-top: 0;
}
#DebtSimulation_2 section.home_simulator article {
  margin: auto;
}
#DebtSimulation_2 section.home_simulator article .inputbox {
  display: flex;
  justify-content: space-between;
  margin: 1rem auto;
  flex-wrap: wrap;
}
#DebtSimulation_2 section.home_simulator article .inputbox h2 {
  text-align: left;
  font-size: 1rem;
  padding: 0.5rem;
  font-weight: normal;
  flex-basis: 100%;
}
#DebtSimulation_2 section.home_simulator article .inputbox h2 span.require,
#DebtSimulation_2 section.home_simulator article .inputbox h2 span.optional {
  color: white;
  padding: 0 0.5rem;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-left: 10px;
}
#DebtSimulation_2 section.home_simulator article .inputbox h2 span.require {
  background-color: #ff936d;
}
#DebtSimulation_2 section.home_simulator article .inputbox h2 span.optional {
  background-color: gray;
}
#DebtSimulation_2 section.home_simulator article .inputbox h2 span.emphasis {
  color: #006fc0;
  font-weight: bold;
}
#DebtSimulation_2 section.home_simulator article .inputbox div {
  flex-basis: 100%;
}
#DebtSimulation_2 section.home_simulator article .inputbox div.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#DebtSimulation_2 section.home_simulator article .inputbox div.d-flex .telarea {
  flex-basis: 30%;
}
#DebtSimulation_2 section.home_simulator article .inputbox div.d-flex .telarea:after {
  content: "-";
}
#DebtSimulation_2 section.home_simulator article .inputbox div.d-flex .error_message {
  flex-wrap: 100%;
}
#DebtSimulation_2 section.home_simulator article .inputbox input::placeholder {
  color: rgba(170, 170, 170, 0.6666666667);
}
#DebtSimulation_2 .sim_2_heading {
  width: calc(100% - 2rem);
  margin: 10px auto 0;
  padding: 15px 10px;
  background-image: url("../img/yellow_base.webp");
  background-size: cover;
  text-align: center;
}
#DebtSimulation_2 .sim_2_heading h2 {
  font-size: 20px;
}
#DebtSimulation_2 .sim_2_heading h2 span {
  color: #ff6735;
}
#DebtSimulation_2 .form-note {
  margin: 1.5rem 0 2rem;
  font-size: 14px;
  line-height: 1.2;
}
#DebtSimulation_2 .error_message {
  text-align: left;
  color: red;
}

section.home_simulator--complete {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 3rem 1rem;
  margin-top: 0;
  color: #2c3e50;
}
section.home_simulator--complete p {
  text-align: center;
  margin-bottom: 1rem;
}
section.home_simulator--complete h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
section.home_simulator--complete h2.line {
  margin-top: 2.5rem;
}
section.home_simulator--complete span {
  display: inline-block;
}
section.home_simulator--complete .line-qr {
  width: 150px;
  margin: auto;
}
section.home_simulator--complete .line-it-button {
  text-align: center;
}
section.home_simulator--complete .line-it-button a {
  display: block;
  max-width: 50%;
  min-width: 250px;
  background-color: #06c755;
  color: #fff;
  padding: 0.5rem 2rem;
  border: solid 2px #06c755;
  margin: 1rem auto;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  transition: ease 0.2s;
}
section.home_simulator--complete .line-it-button a:hover {
  color: #06c755;
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */