:root {
  --text-color: #232323;
  --primary-color: #1879f7;
  --secondary-color: #62c0b4;
  --small-radius: 6px;
  --large-radius: 30px;
  --small-font: 1.2rem;
  --medium-font: 2rem;
  --large-font: 3.2rem;
  --x-large-font: 4.5rem;
}

@media (max-width: 760px) {
  .breadcrumbs {
    margin-top: 80px;
  }
}

@media (max-width: 760px) {
  .section-hero .section-content + .hero__img,
  .section-hero .hero-numProperty {
    display: none;
  }
}

.hero-texts {
  margin-top: 50px;
}
@media (max-width: 760px) {
  .hero-texts {
    margin-top: 0;
  }
}
.hero-texts {
  position: relative;
  z-index: 1;
}
@media (min-width: 1041px) {
  .hero-texts {
    max-width: 55%;
  }
}
.hero__catch {
  font-size: var(--x-large-font);
}
@media (max-width: 760px) {
  .hero__catch {
    font-size: var(--medium-font);
  }
}
.hero__catch {
  color: var(--text-color);
  font-weight: 900;
}
.hero__lead {
  margin-top: 40px;
}
@media (max-width: 760px) {
  .hero__lead {
    margin-top: 20px;
  }
}
.hero__lead + .hero__lead {
  margin-top: 20px;
}
.hero .flex:has(.hero__img) {
  position: relative;
}
@media (min-width: 1041px) {
  .hero__img {
    position: absolute;
    top: 100px;
    right: 0;
    max-height: 380px;
    max-width: 480px;
    height: 100%;
  }
}
@media (min-width: 1041px) {
  .hero__img img {
    object-fit: cover;
    object-position: left top;
    height: 100%;
  }
}

.section-company .section-content {
  background-color: #fff;
  border-radius: 12px;
  margin-top: 40px;
  padding: 30px 50px;
}
@media (max-width: 760px) {
  .section-company .section-content {
    margin-top: 20px;
    padding-inline: 20px;
    max-width: 92%;
  }
}
.section-company .section-content:nth-of-type(even) .headline__title {
  background: linear-gradient(transparent 80%, var(--secondary-color) 0%);
}
.section-company .headline__title {
  font-weight: 900;
  background: linear-gradient(transparent 80%, rgba(24, 121, 247, 0.7) 0%);
  width: fit-content;
  font-size: var(--large-font);
}

.company-list {
  display: grid;
  grid-template: repeat(2, 1fr);
  gap: 40px;
  counter-reset: item;
  margin-top: 40px;
  list-style: none;
}
.company-list .item01 {
  grid-area: 1/1/2/2;
}
.company-list .item02 {
  grid-area: 1/2/2/3;
}
.company-list .item03 {
  grid-area: 2/1/3/2;
}
.company-list .item04 {
  grid-area: 2/2/3/3;
}
@media (max-width: 760px) {
  .company-list .item01 {
    grid-area: 1/1/2/2;
  }
  .company-list .item02 {
    grid-area: 2/1/3/2;
  }
  .company-list .item03 {
    grid-area: 3/1/4/2;
  }
  .company-list .item04 {
    grid-area: 4/1/5/2;
  }
}
.company-item {
  counter-increment: item;
  position: relative;
  margin-left: 30px;
}
@media (max-width: 760px) {
  .company-item {
    margin-left: 0;
  }
}
.company-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -42px;
}
@media (max-width: 760px) {
  .company-item::before {
    left: 0;
  }
}
.company-item::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 35px 20px;
  border-color: transparent transparent rgba(24, 121, 247, 0.7) transparent;
}
.company-item::after {
  content: counter(item);
  position: absolute;
  top: 5px;
  left: -28px;
}
@media (max-width: 760px) {
  .company-item::after {
    left: 14px;
  }
}
.company-item::after {
  color: #fff;
  font-size: var(--medium-font);
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 1041px) {
  .company-item:nth-last-of-type(1)::before, .company-item:nth-last-of-type(4)::before {
    border-color: transparent transparent var(--secondary-color) transparent;
  }
}
@media (max-width: 760px) {
  .company-item:nth-last-of-type(odd)::before {
    border-color: transparent transparent var(--secondary-color) transparent;
  }
}
@media (max-width: 760px) {
  .company-item.flex {
    flex-direction: column;
  }
}
.company__title {
  font-weight: 900;
  font-size: var(--medium-font);
}
@media (max-width: 760px) {
  .company__title {
    padding-left: 45px;
  }
}
.company.guideline .company-item::before {
  border-color: rgba(24, 121, 247, 0.7);
  border-radius: 50%;
  border-width: 18px;
}
.company.guideline .company-item::after {
  top: 0;
  left: -30px;
}
@media (max-width: 760px) {
  .company.guideline .company-item::after {
    left: 12px;
  }
}
.company.guideline .company-item:nth-last-of-type(odd)::before {
  border-color: var(--secondary-color);
}

.staff-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  .staff-item {
    flex-direction: column;
    margin-top: 60px;
  }
}
.staff .flex {
  align-items: center;
  gap: 20px;
}
@media (max-width: 760px) {
  .staff .flex {
    justify-content: space-around;
  }
}
.staff__position {
  background-color: var(--primary-color);
  color: #fff;
  line-height: 1;
  padding: 5px 10px 7px;
  border-radius: var(--small-radius);
  font-size: var(--small-font);
}
.staff__title {
  font-size: var(--large-font);
  font-weight: 900;
  text-align: center;
}
.staff__title ruby {
  font-size: var(--small-font);
  display: block;
}
.staff__img {
  max-width: 250px;
}
@media (max-width: 760px) {
  .staff__img {
    max-width: 50%;
  }
}
.staff__text {
  font-size: var(--small-font);
}
@media (min-width: 1041px) {
  .staff__text {
    max-width: 440px;
  }
}

.section-overview {
  margin-top: 80px;
}
.section-overview .headline__title {
  font-weight: 900;
}

.overview {
  margin-top: 40px;
}
.overview-list {
  border-top: none;
  display: flex;
  flex-wrap: wrap;
}
.overview__title {
  border-top: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 20px;
  max-width: 18%;
  width: 100%;
}
@media (max-width: 760px) {
  .overview__title {
    padding-inline: 10px;
    max-width: initial;
    padding-bottom: 1px;
  }
}
.overview__detail {
  border-top: 1px solid var(--primary-color);
  box-sizing: border-box;
  margin: 0;
  padding: 20px;
  width: 100%;
  max-width: 82%;
}
@media (max-width: 760px) {
  .overview__detail {
    padding-inline: 10px;
    border-top: none;
    max-width: initial;
    padding-top: 1px;
  }
}
.overview__text + .overview__text {
  margin-top: 20px;
}/*# sourceMappingURL=company.css.map */