@charset "UTF-8";
/* CSS Document */


/*　会社・法人　*/
.houjin_more {
  padding-top: min(10vw, 6.25rem);
  padding-bottom: min(10vw, 6.25rem);
  text-align: center;
}
.houjin_more .btn {
  max-width: 530px;
  border: 2px solid var(--color_blue);
  border-bottom: 5px solid var(--color_navy);
  margin: 0 auto;
  margin-top: min(6vw, 3.75rem);
  padding: min(4vw, 1.875rem) 1.25rem;
  color: var(--color_yellow);
}
.houjin_more .btn:hover {
  border-color: var(--color_navy);
  color: var(--color_navy);
}


/*　不動産　*/
.hudousan_step {
  padding-top: min(10vw, 6.25rem);
  padding-bottom: min(10vw, 6.25rem);
}
.hudousan_step-num {
  position: relative;
  text-align: center;
  padding: 1rem;
  color: white;
  font-weight: 700;
}
.hudousan_step-num::before {
  content:'';
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 0;
}

.hudousan_step-inner.step1 .hudousan_step-num::before {
  background-color: #93D4FF;
}
.hudousan_step-inner.step2 .hudousan_step-num::before {
  background-color: #6BC4FC;
}
.hudousan_step-inner.step3 .hudousan_step-num::before {
  background-color: #45ADF2;
}
.hudousan_step-inner.step4 .hudousan_step-num::before {
  background-color: #1094ED;
}
.hudousan_step-num span {
  position: relative;
  z-index: 2;
}
.hudousan_step-box {
  background-color: #F4F7FA;
  padding: 0.9375rem;
  height: 100%;
}
.hudousan_step-text {
  padding: 5px 0.9375rem;
  border-left: 4px solid transparent;
}
.hudousan_step-inner.step1 .hudousan_step-text {
  border-color: #93D4FF;
}
.hudousan_step-inner.step2 .hudousan_step-text {
  border-color: #6BC4FC;
}
.hudousan_step-inner.step3 .hudousan_step-text {
  border-color: #45ADF2;
}
.hudousan_step-inner.step4 .hudousan_step-text {
  border-color: #1094ED;
}
.hudousan_step-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
.hudousan_step-sub {
  font-weight: bold;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid #C8C8C8;
}

.hudousan_step {
  width: 100%;
}
.hudousan_step-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}


@media screen and (max-width: 767px) {
  .hudousan_step-inner .hudousan_step-num::before {
    left: 0;
    width: 100%;
    height: calc(100% + 0.9375rem);
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
  }
}
@media screen and (min-width: 768px) {
  .hudousan_step-inner:not(.step1) .hudousan_step-num::before {
    left: 1px;
    width: calc(100% + 0.875rem);
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
  }
  .hudousan_step-inner.step1 .hudousan_step-num::before {
    left: 0;
    width: calc(100% + 0.9375rem);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
  }
  .hudousan_step-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 1rem);
  }
  .hudousan_step-inner {
    width: calc(100% / 4);
  }
}