@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}


.route-timeline li {
  position: relative;
  padding-right: 30px; /* 説明文のスペース確保 */
}

.route-timeline li::after {
  content: "→";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.route-timeline li:last-child::after {
  content: ""; /* 最後のポイントには「→」を表示しない */
}

.route-description {
  display: block;
  font-size: 12px;
  color: #888;
}



.route-timeline li {
  position: relative;
  padding-bottom: 30px; /* 矢印を表示するスペースを確保 */
}

.route-timeline li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20px; /* 矢印の幅 */
  height: 20px; /* 矢印の高さ */
  background-image: url("data:image/svg+xml,%3Csvg ... %3C/svg%3E"); /* SVGアイコンのデータURI */
  background-size: contain;
}

.route-timeline li:last-child::before {
  content: ""; /* 最後の項目には矢印を表示しない */
}

.route-description {
  display: block;
  font-size: 12px;
  color: #888;
}

