@charset "utf-8";
.refinance-top-area {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
  padding: 10px 40px;
  width: 100%;
}

.refinance-top-area > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
}

.refinance-top-area__button-wrapper {
  height: 100px;
  justify-content: flex-end;
  margin-top: 0;
}

.refinance-top-area__button-wrapper:nth-child(2),
.refinance-top-area__link-wrapper:nth-child(4) {
  margin-left: 20px;
}

.refinance-top-area__link-wrapper {
  height: 60px;
  justify-content: flex-start;
  margin-top: 20px;
}

.refinance-top-area > div > *:not(:first-child) {
  margin-top: 10px;
}

@media screen and (max-width: 800px) {
  .refinance-top-area {
    flex-direction: column;
  }

  .refinance-top-area__button-wrapper:nth-child(2),
  .refinance-top-area__link-wrapper:nth-child(4) {
    margin-left: 0;
  }

  .refinance-top-area > div {
    height: auto;
    margin-top: 20px;
    width: 100%;
  }

  .refinance-top-area > div:nth-child(1) {
    order: 1;
  }

  .refinance-top-area > div:nth-child(2) {
    order: 3;
  }

  .refinance-top-area > div:nth-child(3) {
    order: 2;
  }

  .refinance-top-area > div:nth-child(4) {
    order: 4;
  }
}

.refinance-top-area__button {
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 16px;
  position: relative;
  text-align: center;
  width: 100%;
}

.refinance-top-area__button--red {
  background-color: #bd1112;
}

.refinance-top-area__button--yellow {
  background-color: #ffa400;
}

.refinance-top-area__button:after {
  background: url(/kojin/kariru/images/icn_arrow_next_white.png) no-repeat 0 0 / 8px auto;
  content: "";
  display: block;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
}

.borrowing__card-area {
  display: flex;
}

.borrowing__card-area .borrowing__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% / 3);
}

.borrowing__card-area .borrowing__card:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 800px) {
  .borrowing__card-area {
    display: block;
  }

  .borrowing__card-area .borrowing__card {
    width: 100%;
  }

  .borrowing__card-area .borrowing__card:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.borrowing__card {
  border: 2px solid #f0f0f0;
  border-radius: 7px;
}

.borrowing__card-title {
  align-items: center;
  background-color: #f0f0f0;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  margin-bottom: 30px;
  padding: 10px 0;
  position: relative;
  text-align: center;
}

.borrowing__card-title::after {
  border: 20px solid transparent;
  border-bottom-color: #f0f0f0;
  content: "";
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%) rotate(180deg);
}

.borrowing__card-title-point {
  color: #bd1112;
  font-size: 22px;
}

.borrowing__card-title-other {
  background-color: #fff;
  color: #bd1112;
  display: table;
  font-size: 18px;
  margin: -15px auto 0 auto;
  padding: 0 20px;
}

.borrowing__card-image {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.borrowing__card-wrapper {
  display: flex;
  font-size: 24px;
  justify-content: center;
  padding: 20px;
}

@media screen and (max-width: 800px) {
  .borrowing__card-wrapper {
    display: block;
    font-size: 18px;
  }

  .borrowing__card-title-point {
    font-size: 18px;
  }
}

.conditions-title {
  font-size: 40px;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}

.conditions__large-text {
  font-size: 32px;
}

@media screen and (max-width: 800px) {
  .conditions-title {
    font-size: 24px;
  }

  .conditions__large-text {
    font-size: 18px;
  }
}

.conditions__sub-title {
  font-size: 18px;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}

.conditions-title__red {
  color: #bd1112;
}

.conditions__card-wrapper {
  counter-reset: conditions__card_number 0;
  display: flex;
  width: 100%;
}

.conditions__card-wrapper > *:not(:first-child) {
  margin-left: 10px;
}

.conditions__card {
  align-items: center;
  border: 1px solid #bd1112;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 10px 0;
  position: relative;
  width: 100%;
}

.conditions__card:before {
  background-color: #bd1112;
  border-radius: 50%;
  content: "";
  display: block;
  height: 30px;
  left: 50%;
  position: absolute;
  top: -15px;
  transform: translateX(-50%);
  width: 30px;
}

.conditions__card:after {
  color: #fff;
  content: counter(conditions__card_number) " ";
  counter-increment: conditions__card_number 1;
  display: block;
  left: 50%;
  position: absolute;
  top: -11px;
  transform: translateX(-50%);
}

.conditions__card p {
  color: #bd1112;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}

.conditions__card-point {
  font-size: 48px;
  font-weight: bold;
}

.conditions__card_area:not(:first-child) {
  margin-top: 10px;
}

.conditions__example-card-wrapper {
  display: flex;
  position: relative;
  width: 100%;
}

.conditions__example-card {
  border: 2px solid #d9d9d9;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.conditions__example-card:not(:first-child) {
  margin-left: 40px;
}

.conditions__example-card-arrow {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.conditions__example-card-arrow:after {
  border: 30px solid transparent;
  border-bottom-color: #ffa400;
  content: "";
  left: calc(50% + 7px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0.5);
}

.conditions__example-card-title-point {
  color: #bd1112;
}

.conditions__example-card-amount-point1 {
  font-size: 48px;
  font-weight: bold;
}

.conditions__example-card-amount-point2 {
  font-size: 60px;
  font-weight: bold;
  position: relative;
}

.conditions__example-card-amount-point2:after {
  background-color: #ffa400;
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.conditions__example-card-wrapper-bubble {
  background-color: #f4c5c5;
  border-radius: 7px;
  margin-bottom: 70px;
  padding: 20px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.conditions__example-card-wrapper-bubble:after {
  border: 30px solid transparent;
  border-bottom-color: #f4c5c5;
  content: "";
  left: 50%;
  position: absolute;
  top: calc(100% - 5px);
  transform: translateX(-50%) rotate(180deg) scaleX(0.8);
}

.conditions__example-card-wrapper-bubble p {
  line-height: 1.3;
}

.conditions__example-card-wrapper-bubble-point {
  color: #bd1112;
  font-size: 76px;
  font-weight: bold;
}

.conditions__big-card {
  border: 2px solid #f0f0f0;
  border-radius: 7px;
  padding: 30px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .conditions__example-card-amount-point1 {
    font-size: 22px;
  }

  .conditions__example-card-amount-point2 {
    font-size: 26px;
  }

  .conditions__example-card-wrapper-bubble-point {
    font-size: 42px;
  }

  .conditions__card p {
    font-size: 14px;
  }

  .conditions__big-card {
    padding: 10px;
  }

  .conditions__card-point {
    font-size: 20px;
  }
}

.conditions__big-card-title-point {
  color: #bd1112;
  font-size: 18px;
}

.conditions__big-card-title {
  background-color: #fff;
  display: table;
  font-size: 32px;
  margin: -70px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.conditions__big-card-title-point {
  color: #bd1112;
  font-size: 32px;
}

.conditions__future-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.conditions__future {
  max-width: 200px;
  padding: 10px;
  width: 100%;
}

.conditions__future:not(:first-child) {
  margin-left: 10px;
}

.conditions__future p {
  line-height: 1.6;
  text-align: center;
}

.conditions__future-image-wrapper {
  background-color: #f0f0f0;
  border-radius: 50%;
  overflow: hidden;
  padding: 10px;
  position: relative;
  width: 100%;
}

.conditions__future-image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.conditions__future-image {
  height: 100%;
  left: 50%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
}

.conditions__future-box-wrapper {
  background-color: #bd1112;
  border-radius: 7px;
  margin-top: 10px;
  padding: 10px;
}

.conditions__future-box-title {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 5px;
  text-align: center;
}

.conditions__future-box {
  align-items: center;
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.conditions__future-box .iconLink01 {
  font-size: 13px;
  width: auto;
}

.conditions__future-box .iconLink01:not(:first-child) {
  margin-left: 10px;
}

@media screen and (max-width: 800px) {
  .conditions__future-box .iconLink01 {
    width: 50%;
  }

  .conditions__future-box .iconLink01:not(:first-child) {
    margin-left: 0;
  }

  .conditions__big-card-title {
    font-size: 18px;
    margin: -30px auto 0 auto;
  }

  .conditions__big-card-title-point {
    font-size: 18px;
  }
}

