@charset "utf-8";
.loan-top-kv {
  position: relative;
}

.loan-top-kv .kv-heading {
  left: 50%;
  margin: 0;
  max-width: 1140px;
  padding: 0 0 0 30px;
  position: absolute;
  top: 110px;
  transform: translateX(-50%);
  width: 100%;
}

.loan-top-kv .kv-image {
  height: 542px;
  object-fit: cover;
  width: 100%;
}

.loan-top-kv .kv-heading .kv-heading__wrapper {
  align-items: flex-start;
  max-width: 400px;
  width: 40vw;
}

.jutaku-top-area {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
  padding: 10px 40px;
  width: 100%;
}

.jutaku-top-area > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
}

.jutaku-top-area__button-wrapper {
  height: 100px;
  justify-content: flex-end;
  margin-top: 0;
}

.jutaku-top-area__button-wrapper:nth-child(2),
.jutaku-top-area__link-wrapper:nth-child(4) {
  margin-left: 20px;
}

.jutaku-top-area__link-wrapper {
  height: 60px;
  justify-content: flex-start;
  margin-top: 20px;
}

.jutaku-top-area > div > *:not(:first-child) {
  margin-top: 10px;
}

@media screen and (max-width: 800px) {
  .jutaku-top-area {
    flex-direction: column;
  }

  .jutaku-top-area__button-wrapper:nth-child(2),
  .jutaku-top-area__link-wrapper:nth-child(4) {
    margin-left: 0;
  }

  .jutaku-top-area > div {
    height: auto;
    margin-top: 20px;
    width: 100%;
  }

  .jutaku-top-area > div:nth-child(1) {
    order: 1;
  }

  .jutaku-top-area > div:nth-child(2) {
    order: 3;
  }

  .jutaku-top-area > div:nth-child(3) {
    order: 2;
  }

  .jutaku-top-area > div:nth-child(4) {
    order: 4;
  }
}

.features {
  display: flex;
  flex-direction: column;
}

.features-card__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.features-card {
  padding: 20px;
  width: 50%;
}

@media screen and (max-width: 800px) {
  .features-card__wrapper {
    display: block;
  }

  .features-card {
    padding: 10px 0;
    width: 100%;
  }
}

.features-card > div {
  background-color: #e6e6e6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.features-card__image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.features-card__image-wrapper:before {
  content: "";
  display: block;
  padding-top: 58%;
}

.features-card__image {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.features-card__area {
  align-items: flex-start;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: -30px 10px 10px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.features-card__area > *:not(:first-child) {
  margin-top: 15px;
}

.features-card__title {
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
}

.features-card__title:after {
  background-color: #bd1112;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100px;
}

.features-card__text {
  flex-grow: 1;
}

.features-card__button-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.features-card__button-wrapper > *:not(:first-child) {
  margin-top: 15px;
}

.jutaku-point {
  display: flex;
}

.jutaku-point > div {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  width: calc(100% / 3);
}

.jutaku-point > div:not(:first-child) {
  margin-top: 0;
}

@media screen and (max-width: 800px) {
  .jutaku-point {
    display: block;
  }

  .jutaku-point > div {
    padding: 10px 0;
    width: 100%;
  }
}

.jutaku-point-card {
  flex-grow: 1;
}

.jutaku-point-card__image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.jutaku-point-card__image-wrapper:before {
  content: "";
  display: block;
  padding-top: 43.8%;
}

.jutaku-point-card__image {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.jutaku-point-card__image--contain {
  background-color: #e6e6e6;
  object-fit: contain;
}

.jutaku-point-card__area {
  display: flex;
  flex-direction: column;
  padding: 30px 10px 10px;
  position: relative;
}

.jutaku-point-card__area > *:not(:first-child) {
  margin-top: 10px;
}

.jutaku-point-card__title {
  font-size: 18px;
}

.jutaku-point-card__box {
  background-color: #ffa400;
  color: #fff;
  left: 10px;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.jutaku-point__button-wrapper {
  margin: 0 auto;
  width: 300px;
}

.rate-info {
  margin-bottom: 30px;
}

.rate-info__box-wrapper {
  display: flex;
}

.rate-info__box {
  width: calc(100% / 3);
}

.rate-info__box:not(:first-child) {
  margin-left: 20px;
  margin-top: 0;
}

@media screen and (max-width: 800px) {
  .rate-info__box-wrapper {
    display: block;
  }

  .rate-info__box {
    width: 100%;
  }

  .rate-info__box:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.rate-info__box-title {
  background-color: #f4c5c5;
  font-size: 18px;
  padding: 15px 0;
  text-align: center;
}

.rate-info__box-wrap {
  align-items: center;
  border-bottom: 1px solid #bebebe;
  border-left: 1px solid #bebebe;
  border-right: 1px solid #bebebe;
  display: flex;
  height: 140px;
  justify-content: center;
  padding: 25px 0;
  text-align: center;
}

.rate-info__box-note {
  font-size: 14px;
}

.rate-info__box-year {
  font-size: 18px;
}

.rate-info__box-rate {
  font-size: 36px;
  font-weight: 700;
}

.rate-info__box-suffix {
  font-size: 18px;
}

.buy-info__buton-wrapper {
  display: flex;
}

.buy-info__buton-wrapper .tertiary-button {
  width: calc(100% / 3);
}

.buy-info__buton-wrapper .tertiary-button:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 800px) {
  .buy-info__buton-wrapper {
    display: flex;
    flex-direction: column;
  }

  .buy-info__buton-wrapper .tertiary-button {
    width: 100%;
  }

  .buy-info__buton-wrapper .tertiary-button:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.jutaku-simulation {
  padding-top: 1px;
}

.jutaku-simulation .pageLink .btnWrap .btn.simulation {
  font-size: 18px;
  height: 90px;
  text-align: left;
}

.jutaku-description {
  padding: 20px 16px;
}

.function {
  margin-bottom: 30px;
}

.function__tab {
  display: flex;
  overflow: hidden;
  padding-bottom: 10px;
  position: relative;
}

.function__tab > *:not(:first-child) {
  margin-left: 10px;
}

.function__tab::after {
  background-color: #e30b1c;
  bottom: 10px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.function__tab-item {
  align-items: center;
  background-color: #f0f0f0;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  justify-content: center;
  overflow-wrap: anywhere;
  padding: 15px 10px;
  text-align: center;
  width: calc(50% - 5px);
  word-break: keep-all;
}

.function__tab-item--selected {
  background-color: #fff;
  border-left: 1px solid #e30b1c;
  border-right: 1px solid #e30b1c;
  border-top: 1px solid #e30b1c;
  position: relative;
}

.function__tab-item--selected::after {
  background-color: #fff;
  bottom: -2px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.function__wrapper {
  background-color: #f0f0f0;
  display: none;
  padding: 30px;
}

@media screen and (max-width: 800px) {
  .function__wrapper {
    padding: 10px;
  }
}

.function__wrapper--view {
  display: block;
}

.function__step-card {
  align-items: flex-start;
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  padding: 20px;
  position: relative;
}

.function__step-card > *:not(:first-child) {
  margin-left: 20px;
}

.function__step-card > *:not(:first-child) {
  margin-left: 20px;
}

.function__step-card:not(:last-child) {
  margin-bottom: 20px;
}

.function__step-card:not(:last-child):after {
  background-color: #bebebe;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  left: 30px;
  position: absolute;
  transform: translateY(100%);
  width: 2px;
}

.function__step-box {
  display: flex;
  flex-direction: column;
  width: 65%;
}

.function__step-box > *:not(:first-child) {
  margin-top: 10px;
}

.function__step-image-wrapper {
  overflow: hidden;
  position: relative;
  width: 20%;
}

@media screen and (max-width: 800px) {
  .function__step-image-wrapper {
    width: 35%;
  }
}

.function__step-image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.function__step-image {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.function__step {
  color: #ffa400;
  font-size: 12px;
  font-weight: 700;
}

.function__step-description a {
  color: #00619e;
  text-decoration: underline;
}

