@charset "UTF-8";

.content-box {
  margin-bottom: 2rem;
}
.content-box h3 {
  position: relative;
  font-size: 1.625rem;
  font-weight: 600;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.content-box h3::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--aqua);
}
.access-row {
  display: flex;
  justify-content: space-between;
}
.access-col {
  width: 50%;
  padding-right: 5rem;
}
.access-col h4 {
  color: var(--deep-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.access-point-list {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 464px;
  border-left: var(--deep-blue) solid 4px;
  padding-left: 32px;
  margin-left: 80px;
}
.access-point-list li {
  position: relative;
}
.access-point-list li::before {
  position: absolute;
  display: inline-block;
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: var(--deep-blue) solid 8px;
  background: var(--white);
  top: -6px;
  left: -50px;
}
.access-point-list li p {
  margin-top: 5rem;
  margin-left: 2rem;
}
.access-time {
  margin-top: 2rem;
}
.access-time span {
  font-size: 1.25rem;
  margin-left: 0.5rem;
  color: var(--deep-blue);
  font-weight: 600;
}
.access-point-list .text-indent {
  margin-top: 10rem;
}
.access img {
  aspect-ratio: 3 / 2;
}
.iframe-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  border-radius: 20px;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-info {
  margin-top: 2rem;
}
.access-info li {
  margin-bottom: 2rem;
}
.access-info li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .content-box h3 {
    font-size: 1.25rem;
  }
  .access-col {
    padding-right: 2rem;
  }
}
@media (max-width: 599px) {
  .access-row {
    display: block;
  }
  .access-col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .access-col:last-child {
    margin-bottom: 0;
  }
  .access-point-list {
    height: 320px;
  }
}
