@charset "UTF-8";

/* company-profile-sec */
.dl-company-profile {
  display: flex;
  flex-wrap: wrap;
}
.dl-company-profile dt,
.dl-company-profile dd {
  padding: 1rem;
  background-image: linear-gradient(to right, #ccc, #ccc 2px, transparent 2px, transparent 0);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.dl-company-profile dt {
  width: 150px;
}
.dl-company-profile dd {
  width: calc(100% - 150px);
}
@media screen and (max-width: 767px) {
  .dl-company-profile dt {
    background: none;
    padding: 0;
    width: 100%;
  }
  .dl-company-profile dd {
    padding: 0 1rem .5rem;
    width: 100%;
  }
  .dl-company-profile dd:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}

/* company-access-sec */
.company-access-eles .flex-img-wrap {
  aspect-ratio: 2/1.2;
}

/* company-history-sec */
.dl-company-history {
  display: flex;
  flex-wrap: wrap;
}
.dl-company-history dt,
.dl-company-history dd {
  border-bottom: 1px solid #0B1E46;
  padding: 1rem;
}
.dl-company-history dt {
  background: #f5f5f5;
  width: 150px;
}
.dl-company-history dd {
  width: calc(100% - 150px);
}
@media screen and (max-width: 767px) {
  .dl-company-history dt {
    width: 100%;
  }
  .dl-company-history dd {
    width: 100%;
  }
}