@charset "utf-8";


/* ---------------------------------------------------------
 * station
** --------------------------------------------------------- */
.back_line {
  margin-top: 20px;
}
.back_line a {
  position: relative;
  display: inline-block;
  padding: 5px 10px 5px 35px;
  background-color: #fff;
  border-radius: 5px;
}
.back_line a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  display: block;
  width: 9px;
  height: 9px;
  margin-top: auto;
  margin-bottom: auto;
  border-left: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}

ul.line {
}
ul.line > li {
  margin-top: 20px;
}
ul.line h3 {
  font-weight: bold;
}
ul.stations {
}
ul.stations li {
  position: relative;
  height: 40px;
  margin-top: 5px;
  background-color: #fff;
  overflow: hidden;
}
ul.stations li::before,
ul.stations li::after {
  content: "";
  position: absolute;
  display: block;
}
ul.stations li::before {
  z-index: 1;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #D6D5D4;
}
ul.stations li::after {
  z-index: 2;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #999;
}
ul.stations li:first-child {
  border-radius: 5px 0 0 0;
}
ul.stations li input {
  position: absolute;
  z-index: -1;
}
ul.stations li label {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  line-height: 40px;
}
ul.stations li input:checked + label::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  display: block;
  width: 10px;
  height: 15px;
  border-right: 3px solid var(--pri-color);
  border-bottom: 3px solid var(--pri-color);
  transform: rotate(45deg);
}


.submit_area {
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 375px;
  padding: 10px;
  background-color: #c9c9c9;
  text-align: center;
}
.submit_area + .submit_area {
  margin-top: 20px;
}
.submit_area input {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  color: var(--pri-color);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: all ease 0.3s;
}
.submit_area input:disabled {
  background-color: #eee;
  color: #666;
}
@media (max-width: 519px) {
  .submit_area {
    width: 100%;
  }
}