@charset "utf-8";
/*--------------------------------------------------------------------------------

  access
  
--------------------------------------------------------------------------------*/
.access {
  display: flex;
  gap: 1.5rem var(--space-m);
  text-align: left;
}
.access_img {
  flex-shrink: 0;
  text-align: center;
  align-self: end;
}
.access_content {
  flex-grow: 1;
}
@media not (max-width: 640px) {
  .access_img {
    order: 1;
  }
  .access_img img {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .access {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------------------------
  .access-data
--------------------------------------------------------------------------------*/
.access-data {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
}
.access-data dt:after {
  content: "／";
  margin-left: 0.5rem;
}

/*--------------------------------------------------------------------------------
  .access-bus-tbl
--------------------------------------------------------------------------------*/
.access-bus-tbl {
  width: 100%;
  border-collapse: collapse;
  line-height: var(--lh-s);
}
.access-bus-tbl caption {
  text-align: left;
  margin-bottom: 1rem;
}
.access-bus-tbl th,
.access-bus-tbl td {
  padding: 1rem;
  vertical-align: middle;
}
.access-bus-tbl tr:not(:last-child) th {
  border-bottom: 1px solid rgb(255 255 255 / 0.3);
}
.access-bus-tbl tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-color);
}
.access-bus-tbl th {
  background-color: var(--color-base-lightest);
  color: #FFF;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}
.access-bus-tbl td {
  vertical-align: middle;
  background-color: #FFF;
  text-align: left;
}
.access-bus-tbl tr td:last-child {
  text-align: right;
  white-space: nowrap;
}

/*--------------------------------------------------------------------------------
  .gmap
--------------------------------------------------------------------------------*/
@media not (max-width: 640px) { .gmap { height: 500px; } }
@media (max-width: 640px) { .gmap { height: 400px; } }
.gmap iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

/*--------------------------------------------------------------------------------

  hours
  
--------------------------------------------------------------------------------*/
.hrs {
  text-align: left;
}
@media not (max-width: 640px) {
  .hrs {
    max-width: 1000px;
    margin-inline: auto;
  }
}
