/* p-overview-info
---------------------------------------------------------------------------- */
.p-overview-info {
  padding-block: 8.8rem 10.9rem;
}

.p-overview-info-layout > :first-child {
  margin-bottom: 5.5rem;
}

@media screen and (max-width: 767px) {
  .p-overview-info {
    padding-block: 13.3333333333vw 18.6666666667vw;
  }
  .p-overview-info-layout > :first-child {
    margin-bottom: 8vw;
  }
  .p-overview-info-layout .m-company-list-desc {
    letter-spacing: 0;
  }
}
/* p-overview-sales
---------------------------------------------------------------------------- */
.p-overview-sales {
  padding-bottom: 9.4rem;
}

.p-overview-sales-layout > :first-child {
  margin-bottom: 6rem;
}

.p-overview-sales-list {
  counter-reset: num;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 4rem;
  background-color: #F8F8F8;
  padding: 3.9rem 5.4rem;
}

.p-overview-sales-item {
  font-size: 1.6rem;
  line-height: 1.8125;
  font-weight: 400;
  position: relative;
  padding-left: 3.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #BEBEBE;
}
.p-overview-sales-item::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  line-height: 1.6111111111;
  font-weight: 700;
  font-family: "Roboto";
  color: #073190;
}

@media screen and (max-width: 767px) {
  .p-overview-sales {
    padding-bottom: 16.5333333333vw;
  }
  .p-overview-sales-layout > :first-child {
    margin-bottom: 8vw;
  }
  .p-overview-sales-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4vw 0;
    padding-block: 5.3333333333vw;
    padding-inline: 5.3333333333vw 6.9333333333vw;
  }
  .p-overview-sales-item {
    font-size: 4.2666666667vw;
    padding-left: 9.0666666667vw;
    padding-bottom: 1.5733333333vw;
  }
  .p-overview-sales-item:last-of-type {
    border-bottom: none;
  }
  .p-overview-sales-item::before {
    font-size: 4.8vw;
  }
}
/* p-overview-location
---------------------------------------------------------------------------- */
.p-overview-location {
  padding-bottom: 10rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 400;
}

.p-overview-location-inner > :first-child {
  margin-bottom: 4.6rem;
}

.p-overview-location-layout {
  display: grid;
  grid-template: ". . map" 1rem "address . map" auto ". . map" 3rem "access . map" auto ". . map" 1fr/1fr 6rem auto;
  justify-content: space-between;
}

.p-overview-location-address {
  grid-area: address;
  font-weight: 700;
}

.p-overview-location-address-mail {
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.p-overview-location-address-tel {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
  letter-spacing: 0;
}
.p-overview-location-address-tel::before {
  content: "";
  width: 1.7rem;
  aspect-ratio: 1;
  background-image: url(/assets/images/en/common/icn_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-overview-location-access {
  grid-area: access;
  border: 1px solid #BEBEBE;
  padding: 3rem 4rem;
}
.p-overview-location-access > :not(:last-of-type) {
  margin-bottom: 2rem;
}

.p-overview-location-access-ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
  margin-bottom: 1.5rem;
}
.p-overview-location-access-ttl::before {
  content: "";
  width: 4.6rem;
  aspect-ratio: 1;
  background-image: url(/assets/images/en/company/overview/icn_access.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-overview-location-access-root span {
  font-weight: 700;
}
.p-overview-location-access-root p {
  margin-bottom: 0.3rem;
}
.p-overview-location-access-root a {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  color: #073190;
  border-bottom: 1px solid;
  padding-bottom: 0.2rem;
  display: inline grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
}
.p-overview-location-access-root a::after {
  content: "";
  width: 1.5rem;
  aspect-ratio: 15/16;
  background-image: url(/assets/images/en/common/icn_pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (any-hover: hover) {
  .p-overview-location-access-root a:hover {
    border-bottom: 1px solid transparent;
  }
}

.p-overview-location-map {
  grid-area: map;
  width: 64rem;
  aspect-ratio: 640/427;
}
.p-overview-location-map > iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-overview-location {
    padding-bottom: 13.3333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.8125;
  }
  .p-overview-location-inner > :first-child {
    margin-bottom: 6.4vw;
  }
  .p-overview-location-layout {
    grid-template: "address" auto "." 4.5333333333vw "access" auto "." 8vw "map" auto/1fr;
  }
  .p-overview-location-address-mail {
    margin-bottom: 1.0666666667vw;
    font-size: 4.8vw;
    letter-spacing: 0;
  }
  .p-overview-location-address-tel {
    font-size: 4.8vw;
    column-gap: 2.6666666667vw;
    letter-spacing: 0;
  }
  .p-overview-location-address-tel::before {
    width: 4.5333333333vw;
  }
  .p-overview-location-access {
    padding: 5.3333333333vw 5.3333333333vw 6.6666666667vw;
  }
  .p-overview-location-access > :not(:last-of-type) {
    margin-bottom: 5.3333333333vw;
  }
  .p-overview-location-access-ttl {
    font-size: 4.8vw;
    line-height: 1.6666666667;
    column-gap: 2.6666666667vw;
    margin-bottom: 4vw;
  }
  .p-overview-location-access-ttl::before {
    width: 8vw;
  }
  .p-overview-location-access-root p {
    margin-bottom: 0.8vw;
  }
  .p-overview-location-access-root a {
    font-size: 4.2666666667vw;
    column-gap: 2.6666666667vw;
    padding-bottom: 0.5333333333vw;
  }
  .p-overview-location-access-root a::after {
    width: 4vw;
  }
  .p-overview-location-map {
    width: 89.3333333333vw;
    aspect-ratio: 335/224;
  }
}
