@charset "UTF-8";
/* CSS Document */
.store_route, .store_route *, .store_route *::before, .store_route *::after {
  box-sizing: border-box;
}
.store_route {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--gray-color);
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 2em;
}
/* 見出し（ボタン） */
.store_route_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.store_route_title {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
}
/* ＋ / − アイコン */
.store_route_icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
}
.store_route_icon::before, .store_route_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--main-color);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
/* 横棒 */
.store_route_icon::before {
  width: 16px;
  height: 2px;
}
/* 縦棒（開いている時に消える） */
.store_route_icon::after {
  width: 2px;
  height: 16px;
}
/* 開いている状態 */
.store_route.is_open .store_route_icon::before, .store_route.is_open .store_route_icon::after {
  background: var(--sub-color);
}
.store_route.is_open .store_route_icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
/* 中身（開閉アニメーション） */
.store_route_panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.store_route.is_open .store_route_panel {
  grid-template-rows: 1fr;
}
.store_route_panel_inner {
  overflow: hidden;
}
.store_route_body {
  padding: 0 25px 25px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-color);
}
/* 注意書き（前後の補足文） */
.store_route_note {
  margin: 0 0 1.6em;
}
/* 手段（dt）と経路説明（dd） */
.store_route_list {
  margin: 0;
}
.store_route_list dt {
  margin: 0;
  font-weight: inherit;
}
.store_route_list dd {
  margin: 0 0 1.6em; /* dd 既定の左インデントを打ち消す */
}
.store_route_body > :last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .store_route_header {
    padding: 20px 24px;
  }
  .store_route_body {
    padding: 0 20px 24px;
    font-size: 0.8rem;
  }
}
.store_card .store_route {
  border: 1px solid var(--main-color);
  background: none;
  margin-top: 8%;
}
.store_card .store_route_title {
  background: linear-gradient(to right, #2c8ea6, #2c81a7, #2b5ba6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.store_card .store_route_icon::before, .store_card .store_route_icon::after {
  background: linear-gradient(to right, #2c8ea6, #2c81a7, #2b5ba6);
}