
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


* {
  font-family: 'Zen Maru Gothic', sans-serif !important;
}

html {
  min-width: 320px;
  background: #eaf3fb;
  color: #182366;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}


.lfs-page {
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  background: #f3f9ff;
}

.lfs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lfs-is-hidden {
  display: none !important;
}


.lfs-header {
  display: flex;
  align-items: flex-start;
  min-height: 60px;
  padding: 14px 0 0 15px;
  background: #fff;
}

.lfs-header__logo-link {
  display: inline-flex;
  width: 109px;
  min-height: 36px;
  align-items: center;
}

.lfs-header__logo {
  width: 109px;
  height: 36px;
  object-fit: contain;
}

.lfs-breadcrumb {
  padding: 10px 16px;
  margin-bottom: 8px;
}

.lfs-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  font-size: 11px;
}

.lfs-breadcrumb__item {
  display: flex;
  align-items: center;
  color: #64748b;
}

.lfs-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  margin: 0 6px;
  font-size: 9px;
  color: #94a3b8;
}

.lfs-breadcrumb__link {
  color: #0284c7;
  text-decoration: none;
}

.lfs-breadcrumb__link:hover {
  text-decoration: underline;
}

.lfs-breadcrumb__current {
  color: #475569;
  font-weight: bold;
}


.lfs-hero {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.lfs-hero__image-wrapper {
  width: 100%;
  height: 100%;
}

.lfs-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lfs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(230, 242, 255, 0.8), rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
}

.lfs-hero__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 2;
}

.lfs-hero__title {
  font-size: 40px;
  font-weight: bold;
  color: #18308f;
  line-height: 1.2;
  margin-bottom: 8px;
}

.lfs-hero__date {
  font-size: 13px;
  font-weight: bold;
}


.lfs-intro {
  margin: 16px 0 24px;
  padding: 16px 16px;
  text-align: left;
}

.lfs-intro__catch {
  font-size: 13px;
  font-weight: bold;
  color: #0d216b;
  line-height: 1.5;
  margin-bottom: 6px;
}

.lfs-intro__catch span {
  display: inline-block;
  margin-right: 8px;
}

.lfs-intro__sub {
  font-size: 14px;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.lfs-intro__sub strong {
  color: #0284c7;
}

.lfs-intro__divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 10px 0;
}

.lfs-intro__desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.lfs-intro__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.lfs-intro__desc mark {
  background: linear-gradient(transparent 60%, #bae6fd 60%);
  color: #0f172a;
  font-weight: bold;
}

.lfs-intro__notice {
  font-size: 10.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 10px;
}


.lfs-start-card {
  margin: 0 22px 22px;
  padding: 27px 18px 24px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
}

.lfs-start-card__lead {
  margin: 0 0 7px;
  color: #1d2873;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.lfs-start-card__mascot {
  width: 132px;
  height: 58px;
  margin: 0 auto -4px;
  object-fit: cover;
  object-position: center top;
}

.lfs-main-button {
  display: inline-flex;
  width: min(100%, 323px);
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 33px;
  background: linear-gradient(100deg, #7374ee 5%, #99dff9 95%);
  box-shadow: 0 5px 0 rgba(35, 40, 120, 0.18), 0 12px 18px rgba(41, 73, 125, 0.18);
  color: #fff;
  font-size: clamp(18px, 5.3vw, 22px);
  font-weight: 900;
  text-align: center;
}

.lfs-main-button:focus-visible,
.lfs-reset-button:focus-visible,
.lfs-feature__link:focus-visible,
.lfs-header__logo-link:focus-visible,
.lfs-unknown input:focus-visible,
.lfs-money-input input:focus-visible,
.lfs-select-wrap select:focus-visible {
  outline: 3px solid #75d6f5;
  outline-offset: 3px;
}


.lfs-form {
  margin: 0 14px 28px;
  padding: 0 0 1px;
  border-radius: 8px;
  background: #fff;
}

.lfs-form-section {
  padding: 18px 10px 21px;
  border: 1px solid #e8edf8;
  border-radius: 8px;
  background: #fff;
}

.lfs-form-section + .lfs-form-section {
  margin-top: 18px;
}

.lfs-section-heading {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 22px;
  padding: 0 0 7px;
  border-bottom: 2px solid #252c7d;
  color: #1f2a72;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.lfs-section-heading__icon {
  width: 22px;
  height: 22px;
  color: #263079;
  flex: 0 0 auto;
}

.lfs-section-heading__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lfs-field {
  margin: 0 22px 22px;
  scroll-margin-top: 18px;
}

.lfs-field-note {
  display: block;
  width: 100%;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
  margin-bottom: 4px;
  line-height: 1.6;
}

.lfs-form-group {
  margin-bottom: 20px;
}

.lfs-field:last-child {
  margin-bottom: 0;
}

.lfs-badge {
  display: inline-flex;
  min-width: 29px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.lfs-badge--required {
  background: #ffe8eb;
  color: #ff7182;
}

.lfs-badge--optional {
  background: #eeeeee;
  color: #9a9a9a;
}

.lfs-select-wrap,
.lfs-money-input {
  position: relative;
  display: flex;
  align-items: center;
}

.lfs-select-wrap select,
.lfs-money-input input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d5dbea;
  border-radius: 9px;
  background: #fff;
  color: #253078;
  font-size: 14px;
  font-weight: 700;
}

.lfs-select-wrap select {
  appearance: none;
  padding: 0 38px 0 17px;
}

.lfs-select-wrap::after {
  position: absolute;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333b86;
  border-bottom: 2px solid #333b86;
  content: "";
  pointer-events: none;
  transform: rotate(45deg) translateY(-3px);
}

.lfs-money-input input {
  padding: 0 14px;
}


.lfs-form-container {
  padding: 16px;
  background-color: #f8fafc;
}

.lfs-step-section {
  margin-bottom: 24px;
}

.lfs-step-title {
  font-size: 18px;
  color: #0d216b;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding-left: 10px;
  border-left: 4px solid #0d216b;
}

.lfs-step-desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.lfs-card {
  background: #ffffff;
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.lfs-form-group {
  margin-bottom: 16px;
}

.lfs-label {
  display: block;
  margin: 0 0 6px;
  color: #333333;
  font-size: 13px;
  font-weight: bold;
}

.lfs-badge-required {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}


.lfs-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.lfs-input {
  width: 100%;
  height: 48px;
  background-color: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 40px 0 12px;
  font-size: 15px;
  color: #333333;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.lfs-input:focus {
  background-color: #ffffff;
  border-color: #2b6cb0;
}


.lfs-input:not(:placeholder-shown) {
  background-color: #ffffff;
  border-color: #cbd5e1;
}

.lfs-input::placeholder {
  color: #94a3b8;
}

.lfs-unit {
  position: absolute;
  right: 12px;
  font-size: 13px;
  color: #475569;
  pointer-events: none;
}

.lfs-icon-info {
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
  margin-left: 2px;
}


.lfs-error-message {
  color: #ef4444;
  font-size: 11px;
  margin-top: 4px;
  display: block;
}

.lfs-input.is-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

.lfs-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}


.lfs-accordion-content {
  display: none;
  margin-top: 16px;
}

.lfs-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0 8px 0;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  user-select: none;
  margin-top: 16px;
}

.lfs-accordion-toggle:hover {
  color: #0d216b;
}


.lfs-accordion-toggle .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-right: 2px solid #0d216b;
  border-bottom: 2px solid #0d216b;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}

.lfs-accordion-toggle.is-open .arrow {
  transform: translateY(2px) rotate(-135deg);
}


.lfs-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-right: 2px solid #0d216b;
  border-bottom: 2px solid #0d216b;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.lfs-accordion-toggle.is-open .lfs-arrow {
  transform: rotate(-135deg);
}


.lfs-add-item-wrapper {
  text-align: center;
  margin-top: 16px;
}

.lfs-add-button {
  display: block;
  margin: 20px auto 8px auto;
  background: none;
  border: none;
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  padding: 8px 16px;
  transition: opacity 0.2s;
}

.lfs-add-button:hover {
  opacity: 0.7;
}


.lfs-summary-card {
  background-color: #e0f2fe;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.lfs-summary-title {
  font-size: 18px;
  font-weight: bold;
  color: #0369a1;
  margin-bottom: 8px;
}

.lfs-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #0369a1;
}


.lfs-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.lfs-quick-fill-btn {
  background-color: #0284c7;
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.2);
}

.lfs-quick-fill-btn:hover {
  background-color: #0369a1;
}

.lfs-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
}

.lfs-mini-toggle-btn {
  background-color: #1e3a8a;
  color: #ffffff;
  border: none;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
}

.lfs-range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.lfs-range-tilde {
  font-size: 14px;
  color: #64748b;
}


.lfs-info-box {
  background-color: #e0f2fe;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  color: #0369a1;
}

.lfs-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1e3a8a;
  font-weight: bold;
}

.lfs-info-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  stroke: #0284c7;
  flex-shrink: 0;
  margin-right: 6px;
}

.lfs-info-value {
  margin-left: auto;
  font-size: 16px;
  font-weight: bold;
  color: #0d216b;
}



.lfs-summary-value {
  font-size: 18px;
  font-weight: bold;
  color: #0d216b;
}


.lfs-submit-wrapper {
  text-align: center;
  margin: 32px 0 16px;
}

.lfs-submit-button {
  width: 100%;
  padding: 16px;
  background-color: #0d216b;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(13, 33, 107, 0.2);
}

.lfs-mascot-btn-wrapper {
  position: relative;
  text-align: center;
  margin: 110px auto 40px;
  width: 100%;
  max-width: 440px;
  padding: 0 16px;
}

.lfs-mascot-img {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lfs-mascot-speech {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
  color: #0d216b;
  background-color: #ffffff;
  border: 2px solid #0d216b;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 3;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.lfs-mascot-speech::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px 6px 0;
  border-style: solid;
  border-color: #0d216b transparent transparent;
  display: block;
  width: 0;
}

.lfs-mascot-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 32px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d216b 0%, #0d216b 35%, #0284c7 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(13, 33, 107, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lfs-mascot-btn-wrapper:hover .lfs-mascot-img {
  transform: translate(-50%, -8px) scale(1.05);
}

.lfs-mascot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13, 33, 107, 0.45);
}

.lfs-mascot-btn:active {
  transform: translateY(1px);
}

.lfs-mascot-terms-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 12px;
  margin-bottom: 6px;
  text-align: center;
  line-height: 1.4;
}


.lfs-step-flow-wrapper {
  position: relative;
  margin: 65px 0 28px;
}

.lfs-step-mascot-img {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.lfs-step-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 20px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lfs-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.lfs-flow-num {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.lfs-flow-text {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.lfs-flow-item--highlight .lfs-flow-num {
  color: #0284c7;
}

.lfs-flow-item--highlight .lfs-flow-text {
  color: #0284c7;
  font-weight: 800;
}

.lfs-flow-arrow {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: bold;
  padding: 0 4px;
}

@media (max-width: 480px) {
  .lfs-step-flow {
    padding: 10px 8px;
  }
  .lfs-flow-num {
    font-size: 10px;
  }
  .lfs-flow-text {
    font-size: 11px;
  }
  .lfs-flow-arrow {
    font-size: 10px;
    padding: 0 2px;
  }
}



.lfs-terms-toggle {
  margin-top: 12px;
  text-align: center;
}

.lfs-terms-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.lfs-terms-toggle__btn::-moz-focus-inner {
  border: 0;
}

.lfs-terms-toggle__icon {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.lfs-terms-toggle__icon::before,
.lfs-terms-toggle__icon::after {
  content: '';
  position: absolute;
  background-color: #0284c7;
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.lfs-terms-toggle__icon::before {
  top: 4px;
  left: 0;
  width: 10px;
  height: 2px;
}

.lfs-terms-toggle__icon::after {
  top: 0;
  left: 4px;
  width: 2px;
  height: 10px;
}

.lfs-terms-toggle__icon.is-open::after {
  transform: rotate(90deg);
}

.lfs-terms-toggle__text {
  font-size: 10.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 10px 0 0;
  padding: 10px 12px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-align: justify;
}




.lfs-result-highlight-box {
  background-color: #e0f2fe;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 20px;
  text-align: center;
}

.lfs-highlight-main {
  font-size: 20px;
  font-weight: 900;
  color: #0d216b;
  line-height: 1.4;
  margin-bottom: 6px;
}

.lfs-highlight-years {
  font-size: 26px;
  color: #0284c7;
}

.lfs-highlight-sub {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

.lfs-card-subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 16px;
}

.lfs-chart-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.lfs-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 16px 0;
}

.lfs-diagnosis-comment {
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 20px;
}

.lfs-summary-comparison {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.lfs-comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.lfs-comp-label {
  color: #475569;
}

.lfs-comp-val {
  font-size: 15px;
  font-weight: bold;
  color: #0f172a;
}



.lfs-footer {
  text-align: center;
  padding: 24px 16px;
  margin-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.lfs-footer-copy {
  font-size: 11px;
  color: #94a3b8;
}


.lfs-calc-item {
  display: block !important;
  width: 100% !important;
  margin-bottom: 16px !important;
  box-sizing: border-box !important;
}

.lfs-calc-item__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 8px !important;
}

.lfs-calc-item__label {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  margin: 0 !important;
}

.lfs-calc-delete-btn {
  background: none !important;
  border: none !important;
  font-size: 11px !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  padding: 0 !important;
  text-decoration: underline !important;
}

.lfs-calc-delete-btn:hover {
  color: #ef4444 !important;
}

.lfs-calc-item__row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.lfs-calc-input-box {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 1 1 90px !important;
  min-width: 0 !important;
  max-width: 115px !important;
  height: 42px !important;
  box-sizing: border-box !important;
}

.lfs-calc-input-box input {
  width: 100% !important;
  height: 100% !important;
  background-color: #f1f5f9 !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  outline: none !important;
  font-size: 13px !important;
  color: #333333 !important;
  padding: 0 24px 0 10px !important;
  margin: 0 !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
  transition: background-color 0.2s, border-color 0.2s;
}

.lfs-calc-input-box input:not(:placeholder-shown) {
  background-color: #ffffff !important;
  border-color: #cbd5e1 !important;
}

.lfs-calc-input-box input::-webkit-outer-spin-button,
.lfs-calc-input-box input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.lfs-calc-unit {
  position: absolute !important;
  right: 8px !important;
  font-size: 12px !important;
  color: #475569 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.lfs-calc-symbol {
  font-size: 14px !important;
  color: #64748b !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.lfs-calc-total-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  padding-left: 4px !important;
  flex-shrink: 0 !important;
}

.lfs-calc-total-box input {
  width: 75px !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 13px !important;
  color: #64748b !important;
  text-align: right !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.lfs-calc-total-unit {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.lfs-calc-error {
  font-size: 11px !important;
  color: #ef4444 !important;
  margin: 4px 0 0 !important;
}

.lfs-calc-limit-message {
  font-size: 12px !important;
  color: #ef4444 !important;
  text-align: center !important;
  margin-top: 8px !important;
}

.lfs-calc-highlight-box {
  background-color: #eff6ff;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.lfs-calc-hint {
  font-size: 13px !important;
  color: #1e3a8a !important;
  font-weight: 700 !important;
  text-align: left !important;
  margin: 0 0 14px !important;
  padding: 0 0 14px !important;
  background: none !important;
  border-bottom: 1px solid #bfdbfe !important;
}

.lfs-calc-item {
  display: block !important;
  width: 100% !important;
  margin-bottom: 12px !important;
  padding: 12px !important;
  background-color: #ffffff !important;
  border-radius: 10px !important;
  box-sizing: border-box !important;
}

.lfs-add-button {
  display: block;
  margin: 16px auto 0 auto;
  background: #ffffff;
  border: 1.5px solid #0d216b;
  color: #0d216b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  padding: 10px 20px;
  border-radius: 24px;
  transition: background-color 0.2s, color 0.2s;
}

.lfs-add-button:hover {
  background-color: #0d216b;
  color: #ffffff;
  opacity: 1;
}

@media (min-width: 601px) {
  body {
    background: #f3f9ff;
    min-height: 100vh;
  }

  .lfs-page {
    min-height: 100vh;
    border-left: none;
    border-right: none;
    box-shadow: none;
    border-radius: 0;
    background: #f3f9ff;
  }
}

@media (max-width: 400px) {
  .lfs-grid-2col {
    grid-template-columns: 1fr;
  }
}