<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&amp;family=Oswald:wght@500&amp;display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --green: #58c038;
  --subgreen: #e6f6dd;
  --yellow: #fefa54;
  --red: #d32c0c;
  --orange: #ff944f;
  --contentWidth: 1000px;
}

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

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

/* 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]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make img 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;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 15px;
}

@media (max-width: 428px) {
  html {
    font-size: 3.5046728972vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6483516484vw;
  }
}
@media (min-width: 910px) {
  html {
    font-size: 15px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  line-height: 1.8;
}

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

.l-example {
  margin-top: 4.6666666667rem;
}

@media screen and (min-width: 768px) {
  .l-example {
    margin-top: 5rem;
  }
}
.l-feature {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .l-feature {
    margin-top: 3rem;
  }
}
.l-fixed-bnr {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
}

.l-fixed-contact {
  position: fixed;
  right: 0;
  bottom: 0.8666666667rem;
  z-index: 99;
}

.l-header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 99;
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 19px;
}

@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 20px;
    max-width: 910px;
  }
}
.l-mv {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .l-mv {
    margin-top: 5.8666666667rem;
  }
}
.l-thanks {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .l-thanks {
    margin-top: 5.8666666667rem;
  }
}
.c-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #194AAF;
  color: #fff;
  padding: 0.4666666667rem;
  letter-spacing: 0.1em;
}

.p-contact__form {
  max-width: 60rem;
  margin: 1.2rem auto 0;
}

@media screen and (min-width: 768px) {
  .p-contact__form {
    margin: 2.5333333333rem auto 0;
  }
}
.p-form__wrap {
  border: 1px solid #868686;
}

@media screen and (min-width: 768px) {
  .p-form__wrap {
    display: flex;
  }
}
.p-form__wrap + .p-form__wrap {
  border-top: none;
}

.p-form__label {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  min-height: 4rem;
  width: 100%;
  letter-spacing: 0.1em;
  background-color: #DFFBFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.3333333333rem;
  border-bottom: 1px solid #868686;
}

@media screen and (min-width: 768px) {
  .p-form__label {
    min-height: 5.2333333333rem;
    border-right: 1px solid #868686;
    border-bottom: none;
    width: 33.7%;
  }
}
.p-form__label--textarea {
  align-items: flex-start;
  padding-top: 1.7333333333rem;
}

.p-form__label span {
  padding: 0 0.5333333333rem;
  display: inline-block;
  font-size: 0.9333333333rem;
  line-height: 1.7142857143;
  color: #fff;
  background-color: #fff;
  font-weight: 700;
  color: #FF7F00;
}

.p-form__input {
  width: 100%;
  background-color: #F2F2F2;
  padding: 1.2rem 1.7333333333rem;
}

@media screen and (min-width: 768px) {
  .p-form__input {
    width: 66.3%;
  }
}
.p-form__input input {
  width: 100%;
  max-width: 342px;
  border: 1px solid #868686;
  height: 41px;
  padding: 0.5333333333rem 1rem;
  font-size: 1.0666666667rem;
  color: #000;
}

.p-form-select__inner {
  position: relative;
  display: inline-block;
  max-width: 342px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-form-select__inner {
    max-width: 257px;
  }
}
.p-form-select__inner::before {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 1.3333333333rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-bottom: 0.1333333333rem solid #333333;
  border-left: 0.1333333333rem solid #333333;
  transform: translateY(-50%) rotate(-45deg);
  box-sizing: border-box;
  pointer-events: none;
}

.p-form__select {
  background-color: #F2F2F2;
  padding: 1.2rem 1.7333333333rem;
}

@media screen and (min-width: 768px) {
  .p-form__select {
    width: 66.3%;
  }
}
.p-form__select select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #868686;
  height: 41px;
  padding: 0.5333333333rem 1rem;
  font-size: 1.0666666667rem;
  cursor: pointer;
}

.p-form__select select option:first-child {
  color: #868686;
}

.p-form__select select:invalid {
  color: #868686;
}

.p-form__select select option {
  color: #000;
}

.p-form-select select::-ms-expand {
  display: none;
}

.p-form-textarea {
  background-color: #F2F2F2;
  padding: 1.7333333333rem 1.7333333333rem 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-form-textarea {
    width: 66.3%;
  }
}
.p-form-textarea textarea {
  padding: 0.5333333333rem 1rem;
  width: 100%;
  height: 15.4rem;
  font-size: 1.0666666667rem;
  border-radius: 0;
  border: 1px solid #868686;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  color: #000;
  max-width: 342px;
}

.p-contact__btn-wrap {
  margin-top: 4.2666666667rem;
  text-align: center;
}

.p-contact__btn {
  display: inline-block;
  position: relative;
  max-width: 22.2666666667rem;
  width: 100%;
}

.p-contact__btn input {
  font-size: 1.6666666667rem;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  padding: 1.8333333333rem;
  background-color: #FF7F00;
  border-radius: 2.5333333333rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-contact__btn input:hover {
  background-color: #FFA500;
}

.p-contact__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  content: "";
  right: 2rem;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 0.2666666667rem solid #fff;
  border-right: 0.2666666667rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  box-sizing: border-box;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.p-feature__list {
  background-color: #F0F3F5;
  display: grid;
  gap: 2rem;
  padding: 2.2rem 2.0666666667rem 2.6666666667rem;
}

@media screen and (min-width: 768px) {
  .p-feature__list {
    padding: 2.2rem 2.0666666667rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.p-feature__item {
  width: 79.2%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-feature__item {
    width: 100%;
  }
}
.p-feature__item-img {
  width: 100%;
}

.p-feature__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-feature__item-title {
  font-size: 1.6666666667rem;
  font-weight: 500;
  text-align: center;
  color: #194AAF;
  margin-top: 0.3333333333rem;
}

.p-fixed-bnr__body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  padding: 5px 0;
  gap: 5px;
}

.p-fixed-bnr__btn {
  display: inline-flex;
  padding: 10px;
  gap: 5px;
  justify-content: center;
  align-items: center;
  max-width: 13rem;
  border-radius: 2.2rem;
  width: 48%;
  height: 45px;
  background-color: #FF7F00;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.line-contact-btn {
  background-color: #58c038;
}

.p-fixed-bnr__btn span {
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-fixed-bnr__btn {
    transform: initial;
  }
}
.p-fixed-bnr__btn img {
  display: inline-block;
  transform: translateY(2px);
  width: 27px;
  height: auto;
}

.p-fixed-contact__link {
  gap: 0.6666666667rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 9.1333333333rem;
  height: 9.1333333333rem;
  font-size: 0.9333333333rem;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
  background-color: #FF7F00;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-fixed-contact__link:hover {
  background-color: #FFA500;
}

.p-flow__body {
  padding: 1.8666666667rem 1.5333333333rem 2.3333333333rem;
  background: linear-gradient(180deg, rgb(206, 249, 255) 0%, rgb(255, 255, 255) 100%);
}

@media screen and (min-width: 768px) {
  .p-flow__body {
    padding: 3rem 3rem 3.7333333333rem;
  }
}
.p-flow-list__item {
  background-color: #fff;
  border: 1px solid #194AAF;
  display: flex;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}

.p-flow-list__item + .p-flow-list__item {
  margin-top: 1.5333333333rem;
}

.p-flow-list__item-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.p-flow-list__item-num {
  width: 12%;
  min-width: 4.8rem;
  background-color: #194AAF;
  font-family: "Oswald", sans-serif;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2.5333333333rem;
  padding: 0.4rem 0;
  line-height: 1;
  position: relative;
}

.p-flow-list__item-num span {
  font-size: 1.3333333333rem;
  text-transform: uppercase;
}

.p-flow-list__item-num::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1.1333333333rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 9px solid #194AAF;
  border-bottom: 0;
}

.p-flow-list__item:last-child .p-flow-list__item-num::before {
  display: none;
}

.p-flow-list__item-title {
  font-size: 1.3333333333rem;
  text-align: center;
  width: 88%;
  font-weight: 700;
  color: #194AAF;
}

.p-footer {
  text-align: center;
  padding: 1.3333333333rem 0 5.8rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding: 6.6666666667rem 0 1.3333333333rem;
  }
}
.p-footer__link {
  width: 100%;
  height: 100%;
  max-width: 16.4666666667rem;
  display: inline-block;
  margin: 0 auto;
}

.p-footer__copyright {
  display: block;
  font-size: 0.6666666667rem;
}

.p-header {
  padding: 0.6rem 0;
  background-color: #fff;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header {
    padding: 0.8rem 0;
  }
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__link {
  display: inline-block;
  height: 100%;
}

.p-header__link img {
  max-width: 10.0666666667rem;
  height: 2.6rem;
}

@media screen and (min-width: 768px) {
  .p-header__link img {
    height: 4.2666666667rem;
    max-width: 16.4666666667rem;
  }
}
.p-header__btn-wrap {
  display: flex;
  gap: 10px;
}

.p-header__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 2.2rem;
  width: 220px;
  background-color: #FF7F00;
  font-weight: 700;
  color: #fff;
  font-size: 0.8rem;
  gap: 0.6rem;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    width: 140px;
    padding: 5px 0px;
  }
  .p-header__btn .p-header__btn img {
    display: inline-block;
    transform: translateY(0px);
    width: 15px;
    height: auto;
  }
}

@media (min-width: 910px) {
  .p-header__btn {
    font-size: clamp(0.857rem, 0.558rem + 0.323vw, 1rem);
  }
}
.p-header__btn:hover {
  background-color: #FFA500;
}

.header-line-contact-btn {
  background-color: #00B900;
}
@media screen and (max-width: 767px) {
  .header-line-contact-btn {
    display: none;
  }
}
.header-line-contact-btn:hover {
  background-color: #009900;
}

@media screen and (min-width: 768px) {
  .p-header__btn {
    padding: 0.7333333333rem 0 0.7333333333rem;
    gap: 0.8rem;
    max-width: 14.7333333333rem;
    font-size: 1.1333333333rem;
  }
}
.p-header__btn img {
  display: inline-block;
  transform: translateY(1px);
  width: 30px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-header__btn img {
    width: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__btn img {
    display: inline-block;
    transform: translateY(0px);
    width: 15px;
    height: auto;
  }
}
.p-mv__inner.l-inner {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-mv__inner.l-inner {
    padding: 0 20px;
  }
}
.p-mv {
  width: 100%;
  height: 100%;
}

.p-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 428/241;
}

@media screen and (min-width: 768px) {
  .p-mv img {
    aspect-ratio: 870/309;
  }
}
.p-mv__text {
  margin-top: 0.5333333333rem;
  font-size: 0.9333333333rem;
  padding: 0 19px;
  line-height: 1.9285714286;
}

@media screen and (min-width: 768px) {
  .p-mv__text {
    padding: 0;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 0.8666666667rem;
  }
}
.p-thanks {
  padding: 4.6666666667rem 0;
  text-align: center;
}

.p-thanks__title {
  font-size: 1.6666666667rem;
  font-weight: 700;
  line-height: 1.4375;
}

@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 2.1333333333rem;
  }
}
@media (min-width: 910px) {
  .p-thanks__title {
    font-size: clamp(2.286rem, 1.088rem + 1.29vw, 2.857rem);
  }
}
.p-thanks__text {
  margin-top: 3.3333333333rem;
  font-size: 0.9333333333rem;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .p-thanks__text {
    letter-spacing: 0.027em;
    margin-top: 4rem;
    font-size: 1.0666666667rem;
  }
}
@media (min-width: 910px) {
  .p-thanks__text {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}
.p-thanks__caution {
  padding: 0.8rem 1.4666666667rem;
  border: 1px solid #E60606;
  color: #E60606;
  max-width: 45.9333333333rem;
  margin: 2.1333333333rem auto 0;
  text-align: left;
  line-height: 2;
  font-size: 0.9333333333rem;
}

@media screen and (min-width: 768px) {
  .p-thanks__caution {
    padding: 1.4rem 4.0666666667rem;
    font-size: 1.0666666667rem;
  }
}
@media (min-width: 910px) {
  .p-thanks__caution {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}
.p-thanks__btn-wrap {
  margin-top: 3.5333333333rem;
  text-align: center;
}

.p-thanks__btn {
  font-size: 0.9333333333rem;
  letter-spacing: 0.027em;
  border-radius: 1.3333333333rem;
  padding: 0.6rem 2.6rem;
  border: 1px solid #707070;
  color: #707070;
  background-color: #fff;
  transition: all 0.3s ease;
}

@media (min-width: 910px) {
  .p-thanks__btn {
    font-size: clamp(1.143rem, 0.544rem + 0.645vw, 1.429rem);
  }
}
.p-thanks__btn:hover {
  background-color: #707070;
  color: #fff;
  border-color: transparent;
}

.p-type__body {
  padding: 1.5333333333rem 1.5333333333rem 2.2rem;
  background-color: #FDFFB6;
}

@media screen and (min-width: 768px) {
  .p-type__body {
    padding: 2.8rem 2.8rem 3.2666666667rem;
  }
}
.p-type__list {
  max-width: 40rem;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  border-bottom: 1px solid #194AAF;
  align-items: center;
}

.p-type__term {
  width: 27.2%;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 1.0666666667rem;
  color: #194AAF;
  line-height: 55px;
}

.p-type__term span {
  padding-left: 0.9rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-type__term span {
    padding-left: 2.8333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-type__term {
    font-size: 1.5333333333rem;
    width: 29.5%;
  }
}
.p-type__description {
  font-size: 0.8666666667rem;
  padding-left: 1.3333333333rem;
  padding-right: 1rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-type__description {
    font-size: 1.2rem;
    padding-right: 1.6666666667rem;
    padding-left: 3.6333333333rem;
  }
}
@media (max-width: 427px) {
  .p-type__description {
    padding-left: 0.6666666667rem;
    padding-right: 0.6666666667rem;
  }
}
.pc-only {
  display: none;
}

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

#line-contact {
  background: var(--green);
  padding: 20px 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #line-contact {
    padding: 15px 0;
  }
}
#line-contact .contents__inner {
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #line-contact .contents__inner {
    width: 100%;
    padding: 15px;
  }
}
#line-contact .contents__inner .section__header {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #line-contact .contents__inner .section__header {
    display: none;
  }
}
#line-contact .contents__inner .section__header .txt-yellow {
  color: var(--yellow);
}
#line-contact .contents__inner .line-contact__inner {
  background: #fff;
  display: flex;
  border-radius: 25px;
  padding: 40px 40px;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  #line-contact .contents__inner .line-contact__inner {
    display: none;
  }
}
#line-contact .contents__inner .line-contact__inner .txt-green {
  color: var(--green);
}
#line-contact .contents__inner .line-contact__inner .line-contact-box .line-contact-header {
  color: var(--green);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#line-contact .contents__inner .line-contact__inner .line-contact-box .line-contact-img {
  margin-bottom: 20px;
}
#line-contact .contents__inner .line-contact__inner .line-contact-box .line-contact-txt {
  font-size: 14px;
}
#line-contact .contents__inner .line-contact__inner .line-contact__right .line-contact-img {
  width: 105px;
  margin-inline: auto;
  border: 1px solid #000;
}
#line-contact .contents__inner .sp-contact-bnr {
  color: #fff !important;
  display: none;
  width: 290px;
  margin-inline: auto;
  color: #fff !important;
  font-size: 37px;
  font-weight: bold;
  background: var(--orange);
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #line-contact .contents__inner .sp-contact-bnr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  #line-contact .contents__inner .sp-contact-bnr::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: url(../line/img/icon_arrow.png) center center/contain no-repeat;
    width: 20px;
    height: 20px;
  }
  #line-contact .contents__inner .sp-contact-bnr .sp-contact-bnr-txt-sm {
    font-size: 20px;
  }
}

.line-banner {
  display: block;
  width: 280px;
  background-color: #00B900;
  padding: 10px 20px;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .line-banner {
    display: none;
  }
}
.line-banner:hover {
  opacity: 0.8;
  text-decoration: none;
}
.line-banner__hours {
  background-color: #ffff00;
  color: #00B900;
  text-align: center;
  padding: 0px;
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 3px;
}
.line-banner__content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.line-banner__icon-wrap {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-banner__icon {
  width: 100%;
  height: auto;
}
.line-banner__text {
  width: 70%;
  font-weight: bold;
}
.line-banner__text p {
  margin: 0;
  color: #fff;
  text-align: center;
}
.line-banner__text-top {
  text-align: center;
  padding-bottom: 4px;
  margin-bottom: 4px !important;
  border-bottom: 1px solid #fff;
}
.line-banner__text-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1.25;
}
.line-banner__text-line-main {
  font-size: 22px;
}
.line-banner__text-line-sub {
  font-size: 18px;
}
.line-banner__assessment {
  font-size: 38px !important;
  line-height: 1.2;
  text-align: center;
}/*# sourceMappingURL=style.css.map */</pre></body></html>