<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  line-height: 1.75;
  box-sizing: border-box;
}

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

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

.pb-0 {
  padding-bottom: 0 !important;
}

.button-default {
  padding: 15px 24px;
  border-radius: 100px;
  border: 1px solid currentColor;
  color: #0996F0;
  min-width: 214px;
  line-height: 1;
  text-align: center;
  transition: .3s;
  &amp;:hover {
    background-color: #0996F0;
    color: #fff;
    text-decoration: none;
  }
}

.pageTitle {
  padding: 64px 20px 56px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .pageTitle {
    padding: 32px 20px 24px;
  }
}

@media (max-width: 767px) {
  .pageTitle h2 {
    font-size: 24px;
    line-height: 1.5;
  }
}

.section {
  padding-block: 56px;
  @media (max-width: 767px) {
    padding-block: 40px;
  }
}

.section-footer {
  display: grid;
  place-content: center;
  margin-top: 40px;
}

.section__container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.section__container--narrow {
  max-width: 896px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 40px;
  &amp;:has(+ .section-description) {
    margin-bottom: 24px;
  }
  @media (max-width: 767px) {
    margin-bottom: 24px;
  }
  &gt; * {
    font-size: 28px;
    color: #0996F0;
    text-align: center;
    margin: 0;
    @media (max-width: 767px) {
      font-size: 24px;
    }
  }
  .section-heading__shoulder {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
    &amp;::before {
      content: 'ï¼¼ ';
    }
    &amp;::after {
      content: ' ï¼';
    }
  }
}

.section-description {
  text-align: center;
  margin-bottom: 40px;
  @media (max-width: 767px) {
    margin-bottom: 24px;
    text-align: left;
  }
}

.section-row {
  display: flex;
  gap: 16px;
  @media (max-width: 767px) {
    flex-direction: column;
  }
}

.section-col {
  flex: 1 0 0;
}

.section-calculation__row {
  display: flex;
  gap: 20px;
  @media (max-width: 767px) {
    flex-direction: column;
  }
}

.section-calculation__col {
  flex: 1 0 0;
}

.calculation-form {
  background-color: #0996F0;
  border-radius: 16px;
  padding: 56px;
  @media (max-width: 767px) {
    padding: 32px 16px;
  }
}

.calculation-form__label,
.calculation-form__legend {
  color: #fff;
  font-weight: bold;
  display: block;
}

.calculation-form__legend {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;

  &amp;::before {
    content: 'ï¼¼ ';
  }

  &amp;::after {
    content: ' ï¼';
  }
  @media (max-width: 767px) {
    margin-bottom: 16px;
  }
}

.calculation-form__group {
  &amp;+.calculation-form__group {
    margin-top: 20px;
  }
}

.calculation-label__title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 20px;
  @media (max-width: 767px) {
    font-size: 18px;
    line-height: 1.5;
  }
  span {
    line-height: 1;
    padding: 6px;
    background-color: #FFF232;
    color: #0996F0;
    font-size: 16px;
    border-radius: 6px;
  }
}

.calculation-label__input,
.calculation-label__select {
  display: block;
  width: 100%;
  height: 56px;
  padding-inline: 12px;
  font-size: 20px;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.calculation-form__button {
  margin-top: 32px;
  display: grid;
  place-items: center;

  button {
    position: relative;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    background-color: transparent;
    font-weight: bold;
    font-size: 20px;
    min-width: 240px;
    padding: 20px 40px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
    &amp;.is-active {
      pointer-events: auto;
      opacity: 1;
    }
    &amp;:disabled {
      pointer-events: none;
      opacity: .5;
    }

    &amp;::after {
      content: 'â†’';
      position: absolute;
      top: 50%;
      right: 16px;
      font-size: 24px;
      transform: translateY(-50%);
      font-family: "Noto Sans JP", sans-serif;
      @media (max-width: 767px) {
        content: 'â†“';
      }
    }

    &amp;:hover {
      background-color: #fff;
      color: #0996F0;
    }
  }
}

.calculation-result {
  border: 8px solid #EAF6FF;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.calculation-result__header {
  padding: 8px 8px 16px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  background-color: #EAF6FF;
}

.calculation-result__body {
  padding: 40px;
  position: relative;
  flex: 1 0 0;
  @media (max-width: 767px) {
    padding: 32px 16px 16px;
  }
}

.calculation-result__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 40px;
  top: 0;
  left: 0;
  background-color: #fff;
  display: none;
  @media (max-width: 767px) {
    padding: 32px 16px;
  }
  &amp;.is-active {
    display: grid;
    place-content: center;
    gap: 16px;
  }
}

.cover-image, .cover__text {
  text-align: center;
}

.cover__text {
  font-size: 24px;
  font-weight: bold;
  color: #0996F0;
  line-height: 1.5;
  @media (max-width: 767px) {
    font-size: 20px;
  }
}

.calculation-result__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  opacity: 0;
  transition: .6s;
  @media (max-width: 767px) {
    gap: 16px;
  }
  &amp;.is-active {
    opacity: 1;
  }
}

.content-main {
  display: grid;
  gap: 16px;
}

.content-main__paragraph {
  display: block;
  text-align: center;
  font-size: 32px;
  line-height: 1.5;
  @media (max-width: 767px) {
    font-size: 20px;
  }
}

.main-paragraph__large {
  font-size: 80px;
  font-weight: bold;
  color: #0996F0;
  line-height: 1;
  @media (max-width: 767px) {
    font-size: 48px;
  }
}

.main-paragraph__small {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  @media (max-width: 767px) {
    font-size: 20px;
  }
}

.content-sub {
  padding: 32px 40px;
  border-radius: 16px;
  background-color: #F6F6F6;
  @media (max-width: 767px) {
    padding: 16px;
  }
}

.content-sub__text {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 16px;
  @media (max-width: 767px) {
    font-size: 18px;
    line-height: 1.5;
  }
  span {
    font-size: 32px;
    color: #FF4F4F;
    font-weight: bold;
    line-height: 1.1;
    @media (max-width: 767px) {
      font-size: 24px;
      line-height: 1.5;
    }
  }
  br {
    @media (max-width: 767px) {
      display: none;
    }
  }
}

.list-kome__item {
  &amp;::before {
    content: 'â€»';
  }
}

.section-calculation__details {
  margin-top: 40px;
}

.details-summary {
  position: relative;
  padding: 16px 48px;
  background-color: #EAF6FF;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  @media (max-width: 767px) {
    font-size: 18px;
  }
  &amp;::after {
    content: url('../img/calculation/icon-plus.svg');
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-calculation__details[open] &amp; {
    &amp;::after {
      content: url('../img/calculation/icon-minus.svg');
    }
  }
}

.details-content {
  border: 2px solid #EAF6FF;
  border-top: transparent;
  padding: 24px 40px;
  display: grid;
  gap: 16px;
  @media (max-width: 767px) {
    padding: 24px 16px;
  }
}

.section-merit__item {
  background-color: #EAF6FF;
  border-radius: 16px;
  padding: 32px 24px;
  display: grid;
  gap: 16px;
}

.merit-item__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #0996F0;
  line-height: 1.5;
  margin: 0;
}

.section-case__item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: .3s;
  height: 100%;
  &amp;:hover {
    text-decoration: none;
    transform: translateY(2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }
}

.section-case__image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-case__group {
  padding: 16px 24px;
}

.case-item__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #0996F0;
}

.case-item__outline {
  color: #4F4F4F;
}

.section-risk {
  display: none;
  background-color: #F6F6F6;
  &amp;.is-active {
    display: block;
  }
  .section-heading {
    &gt; * {
      color: #4F4F4F;
    }
  }
}

.section-risk__row {
  display: flex;
  gap: 20px;
  @media (max-width: 767px) {
    flex-direction: column;
  }
}

.section-risk__col {
  flex: 1 0 0;
}

.risk-example {
  border-radius: 16px;
  background-color: #fff;
  padding: 24px 16px;
}

.risk-example__title {
  font-size: 24px;
  text-align: center;
  margin: 0 0 16px;
  @media (max-width: 767px) {
    font-size: 20px;
  }
}

.risk-example__group {
  display: flex;
  gap: 16px;
}

.risk-example__item {
  flex: 1 0 0;
}

.risk-example__subtitle {
  text-align: center;
  padding: 4px;
  background-color: #F6F6F6;
  font-weight: bold;
  border-radius: 3px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.risk-example__num {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  @media (max-width: 767px) {
    font-size: 15px;
  }
  span {
    font-size: 56px;
    color: #FF4F4F;
    line-height: 1;
    @media (max-width: 767px) {
      font-size: 32px;
    }
  }
}

.risk-text {
  span {
    font-size: 20px;
    font-weight: bold;
  }
}

.risk-text--note {
  font-size: 12px;
  margin-top: 16px;
}

#prompt.section-cta {
  padding-block: 56px;
  @media (max-width: 767px) {
    padding-block: 40px;
  }
  .flex-wrap {
    gap: 30px;
    justify-content: center;
  }
}

.section-more__image {
  @media (max-width: 767px) {
    overflow-x: scroll;
    img {
      min-width: 640px;
    }
  }
}

.section-more__note {
  margin-top: 8px;
}

.section-start__row {
  display: flex;
  @media (max-width: 767px) {
    flex-direction: column;
    gap: 64px;
  }
}

.section-start__col {
  position: relative;
  flex: 1 0 0;
  &amp;:not(:last-child) {
    &amp;::after {
      position: absolute;
      top: calc(50% - 24px);
      right: -24px;
      content: '';
      background-image: url("../sitefront_images/icon/Arrow Left@2x.png");
      width: 48px;
      height: 48px;
      @media (max-width: 767px) {
        right: calc(50% - 24px);
        top: auto;
        bottom: -48px;
        transform: rotate(90deg);
      }
    }
  }
}

.start-item {
  display: grid;
  place-items: center;
  gap: 16px;
  @media (max-width: 767px) {
    gap: 8px;
  }
}

.start-item__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.start-item__image {
  width: 100px;
  height: 100px;
}</pre></body></html>