@charset "utf-8";

/* Search-menu
==================================================================================*/
.gnavi {
  /* font-size: 12.5px; */
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px 0;
  list-style: none;
  justify-content: space-around;
}
label {
  position: relative;
  display: block;
  padding: 4px 0;
  text-decoration: none;
}
label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#f3b5a6;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
input {
  display: none;
}
input[type=radio]:checked + label {
  color: #f3b5a6;
}
input[type=radio]:checked + label:after {
  transform: scale(1.5, 1);
}


/* Result-menu
==================================================================================*/
.target {
  text-align: left;
  padding: 14px 0;
}
.time {
  font-size: 12px;
}
.content {
  padding: 0 14px;
}