@charset "utf-8";


/* ---------------------------------------------------------
 * line
** --------------------------------------------------------- */
#search_station {
  position: relative;
  display: flex;
  margin-top: 5px;
  margin-bottom: 10px;
}
#search_station input {
  width: calc(100% - 80px);
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px 0 0 5px;
  text-align: left;
}
#search_station .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  border: 1px solid;
  background-color: var(--pri-color);
  border-radius: 0 5px 5px 0;
  color: #fff;
  cursor: pointer;
}
#search_result_station {
  position: absolute;
  left: 10px;
  top: 60px;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 4px gray;
  padding: 10px 10px 10px 20px;
  max-height: 500px;
  overflow-y: scroll;
  width: 300px;
}
#search_result_station ul li a {
  display: block;
  text-decoration: underline;
  color: #007ed9;
}
#search_result_station ul li a:hover {
  background-color: #ececec;
}

ul.railways {
}
ul.railways > li {
  margin-top: 20px;
}
ul.railways h3 {
  font-weight: bold;
}
ul.lines {
}
ul.lines li {
  position: relative;
  height: 40px;
  margin-top: 5px;
  background-color: #fff;
  overflow: hidden;
}
ul.lines li::before,
ul.lines li::after {
  content: "";
  position: absolute;
  display: block;
}
ul.lines li::before {
  z-index: 1;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #D6D5D4;
}
ul.lines li::after {
  z-index: 2;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #999;
}
ul.lines li:first-child {
  border-radius: 5px 0 0 0;
}
ul.lines li input {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
ul.lines li a {
  position: relative;
  left: 40px;
  z-index: 3;
  display: block;
  width: calc(100% - 40px);
  height: 100%;
  padding-left: 10px;
  line-height: 40px;
  text-decoration: underline;
}
ul.lines li input:checked + a::before {
  content: "";
  position: absolute;
  left: -25px;
  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%;
  }
}