@charset "UTF-8";
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  a {
    text-decoration: none;
  }
}
.company-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.company-section__label {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(var(--color-blue-rgb), 0.15);
  font-weight: 900;
  line-height: 100%;
  color: var(--color-blue);
}
/* value */
.company-section__textGroup {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.company-section__heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 1px;
  color: var(--color-navy);
}
/* company */
.company-section__item {
  position: relative;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.company-section__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: solid 1px var(--color-black);
}
.company-section__item-title {
  font-weight: 700;
  color: var(--color-navy);
  &::after {
    display: none;
  }
}
/* access */
.map {
  width: 100%;
  height: 18.75rem;
  position: relative;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.view-btn {
  margin: 1rem auto 0 auto;
}
/* 画面幅が768px以上 */
@media screen and (min-width: 768px) {
  .main-section {
    gap: 7.5rem;
  }
  .company-section {
    gap: 2.5rem;
  }
  .company-section__label {
    padding: 0.75rem 1.5rem;
  }
  /* value */
  .company-section__textGroup {
    flex-direction: row;
    gap: 5rem;
  }
  .company-section__heading {
    text-align: start;
    font-size: 2rem;
    letter-spacing: 1.6px;
    white-space: nowrap;
  }
  /* company */
  .company-section__item {
    padding: 2rem 0;
    flex-direction: row;
    gap: 5rem;
  }
  .company-section__item-title {
    min-width: 6.25rem;
    white-space: nowrap;
  }
  /* access */
  .map {
    height: 26.25rem;
  }
  .company-section__btnGroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -1rem;
  }
  .view-btn {
    margin: 0;
  }
}
