@charset "utf-8";
/* ==============================
container
================================= */
.container {
  background-image: url(../images/bg__accessContact--sp.webp);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* container pc */
@media screen and (min-width: 769px) {
  .container {
    background-image: url(../images/bg__accessContact--pc.webp);
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/* ==============================
access
================================= */
.section--access {
  padding: 96px 5.3%;
  background-color: var(--primary-cream);
  color: #2f2f2f;
}

.access__head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.access__head img {
  margin-top: 4px;
  width: 18px;
  height: 23px;
}

.access__txt {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.access__info {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 8px;
}

.access__map {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  filter: grayscale(16%);
}

.access__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  margin-top: 64px;
  text-align: center;
  font-family: "Noto Serif JP";
}

.access__subtitle::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 2px;
  height: 18px;
  border-radius: 12px;
  background: rgba(47, 47, 47, 0.15);
  margin-right: 12px;
}

.access__lead {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  margin-top: 32px;
}

.access__flow {
  margin-top: 32px;
}

.access__station {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #2f2f2f;
  background: #fff;
  padding: 12px;
}

.access__station:last-child {
  border: 2px solid #e67e22;
}

.access__path {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  position: relative;
  padding: 32px 0;
}

.access__path::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-left: 2px dotted rgba(47, 47, 47, 0.15);
  z-index: 1;
}

.access__path span {
  position: relative;
  z-index: 2;
  background-color: var(--primary-cream);
  padding: 4px 12px;
}

.access__note {
  text-align: left;
  margin-top: 32px;
  font-size: 1.4rem;
  font-weight: 400;
}

/* access pc */
@media screen and (min-width: 769px) {
  .section--access {
    padding: 130px var(--contentPadding) 150px var(--contentPadding);
  }

  .access__head {
    gap: 8px;
  }

  .access__head img {
    margin-top: 6px;
    width: 19px;
    height: 24px;
  }

  .access__txt {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
  }

  .access__info {
    font-size: 1.6rem;
  }

  .access__map {
    margin-top: 64px;
  }

  .access__subtitle {
    font-size: 2.4rem;
    line-height: 150%;
  }

  .access__subtitle::before {
    height: 24px;
    margin-bottom: 2px;
  }

  .access__lead {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
  }

  .access__flow {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .access__station {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border: 1px solid rgba(47, 47, 47, 0.15);
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .access__station:last-child {
    flex: none;
    width: auto;
    white-space: nowrap;
  }

  .access__path {
    flex: 1;
    position: relative;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .access__path::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    border-top: 2px dotted rgba(47, 47, 47, 0.4);
    transform: translateY(-50%);
  }

  .access__path span {
    position: relative;
    padding: 0 8px;
  }

  .access__note {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
/* access pc 759px */
