.outline {
  margin-top: 8.7vw;
}
.outline__container {
  max-width: 1020px;
}
.outlineLists {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
}
.outlineList {
  display: flex;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E7E7E7;

  dt {
    font-weight: 500;
    line-height: 2;
    flex: 0 1 23.53%;
  }
  dd {
    font-weight: 400;
    line-height: 2;
    flex: 1;
  }
}
.outlineList.outlineList:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  align-items: flex-start;
}
.childLists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 2rem;
}
.childList {
  display: flex;
  gap: 2rem;
}
.childList__title {
  font-weight: 500;
  line-height: 2;
  min-width: 10rem;
}
.childList__text {
  font-weight: 400;
  line-height: 2;
}

.logo-flex-1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo-flex-2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4.9%;
}

.flex-center {
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .logo-flex-2 {
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .outline {
    margin-top: 3.5rem;
  }
  .outlineList {
    flex-direction: column;
    align-items: flex-start;
  }
  .childLists {
    margin-top: 1rem;
  }
  .childList {
    flex-direction: column;
    gap: 0;
  }
  .logo-flex-2 {
    gap: 1rem;
    margin-top: 1rem;
  }
  .flex-center {
    align-items: flex-start;
  }
}

@media screen and (max-width: 420px) {
  .logo-flex-2 {
    flex-direction: column;
  }
}
/* ================= */
/* 会社案内 */
/* ================= */
.company {
  margin-top: 8rem;
}
.company__container {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.section__contents {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  flex: 1;
  max-width: 787px;

  img {
    width: 100%;
  }
}
.company__button {
  width: fit-content;
  margin-left: auto;
  gap: 0.625rem;
  border-radius: 100px;
  
  path {
    fill: #fff;
    transition: fill .3s;
  }
}
@media (hover:hover) {
  .company__button:hover path {
    fill: var(--linkBlue);
  }
}
.company__button:focus-visible path {
  fill: var(--linkBlue);
}

@media screen and (max-width: 768px) {
  .company {
    margin-top: 4rem;
  }
  .company__container {
    display: block;
  }
  .section__contents {
    margin-top: 1.5rem;
  }
}


/* ================= */
/* アクセス */
/* ================= */
.access {
  padding-block: 8rem;
}
.access__container {
  display: flex;
  gap: 3rem;
}
.access__details {
  flex: 0 1 34.766%;

  p {
    line-height: 2;
  }
  p:first-of-type {
    margin-top: 1.5rem;
  }
  p:nth-of-type(2) {
    margin-top: 0.5rem;
  }
}
.access__map {
  flex: 1;

  iframe {
    aspect-ratio: 787 / 364;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .access {
    padding-block: 4rem;
  }
  .access__container {
    display: block;
  }
  .access__map {
    margin-top: 2rem;
  }
}