@charset "UTF-8";
.midashi {
  background-color: #ebebd1;
  width: 7em;
  display: inline-block;
  text-align: center;
  padding: 0 0.8em;
  margin-top: 0.5em;
  margin-right: 1em;
  border-radius: 5px;
}
.txt_c {
  text-align: center;
}
/* 見出し */
h3.menu-h3 {
  border: 1px solid var(--primary-color);
  text-align: center;
  background: #f5f4f3;
  color: #dd4a33;
  margin-top: 7em;
}
/* 所要時間======================================== */
.spot-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  /* max-width: 900px; */
  margin: auto;
  font-family: sans-serif;
  padding: 40px 0;
}

.spot {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding-right: 16px;
  width: 48%;
  height: 60px;
}

.name {
  flex: 1.5;
  background: #1e4d5c;
  color: white;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 12px 0 0 12px;
  font-weight: bold;
}

.time {
  flex: 1;
  text-align: center;
  font-weight: bold;
}

.map {
  flex: 1;
  text-align: right;
  text-decoration: none;
  color: #1e4d5c;
  font-weight: bold;
}

.time_txt {
  font-size: 1.5em;
}
/* お車でお越しの方======================================== */
.access-container {
  position: relative;
  margin: auto;
  padding: 40px 0;
}

.access-line {
  position: absolute;
  top: 40px; /* 上端からの距離 */
  bottom: 40px; /* 下端からの距離 */
  left: 50%;
  width: 2px;
  background-color: #ccc;
  transform: translateX(-50%);
  z-index: 0;
}

.access-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  text-align: center;
}

.access-step,
.access-info,
.access-destination,
.parking-info {
  background-color: white;
  padding: 15px 10px;
  margin: 10px 0;
  width: 100%;
  border-radius: 8px;
}

.access-step {
  background-color: #e6e6e6;
  font-weight: bold;
  margin-top: 0;
}

.access-destination {
  background-color: #1e4d5c;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/*画面幅800px以下の追加指定*/
@media screen and (max-width: 800px) {
  .spot-list {
    padding: 0;
  }
  .spot {
    width: 100%;
  }
}
