:root {
  --date-w: 178px;
  --industry-w: 72px;
}

@media (max-width: 530px) {
  :root {
    --date-w: 85px;
    --industry-w: 50px;
  }
}
#search-area .search_title {
  font-size: clamp(1rem, 0.498rem + 2.51vw, 2rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 0.5em;
}
#search-area .select_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.5em;
}
#search-area .line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 10px;
  background-color: #ccc;
}
#search-area .line.jobs {
  height: 2px;
  background-color: #000;
}
#search-area .text {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: clamp(0.875rem, 0.624rem + 1.25vw, 1.375rem);
  font-weight: bold;
}

#options1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5em;
}
#options1.seminar {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media (max-width: 530px) {
  #options1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#options1 li {
  width: var(--date-w);
  margin-bottom: 8px;
}
#options1 li :hover {
  cursor: pointer;
  opacity: 0.5;
}
#options1 li .inner {
  border: 1px solid #000;
  height: 85px;
  margin: 10px;
  padding: 0 2px;
  line-height: 1.2em;
  font-size: clamp(0.875rem, 0.4rem + 1.57vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 376px) {
  #options1 li .inner {
    height: 55px;
    font-size: 0.75em;
    margin: 5px;
    padding: 5px;
  }
}

#options2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 5px;
  margin-bottom: 1.5em;
}
@media (max-width: 680px) {
  #options2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#options2 li {
  margin-right: 2px;
  margin-bottom: 8px;
}
#options2 li :hover {
  cursor: pointer;
  opacity: 0.5;
}
@media (max-width: 375px) {
  #options2 li {
    margin-right: 1px;
  }
}
#options2 li .inner {
  height: var(--industry-w);
  font-size: clamp(0.7rem, 0.3rem + 0.94vw, 0.85rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
#options1 li,
#options2 li {
  -webkit-box-shadow: 3px 5px 3px rgba(100, 100, 100, 0.3);
          box-shadow: 3px 5px 3px rgba(100, 100, 100, 0.3);
  border-top: 1px solid rgba(102, 102, 102, 0.168627451);
  border-left: 1px solid rgba(102, 102, 102, 0.168627451);
}

.selected {
  background-color: lightgreen !important;
}

.result-title {
  display: block;
  background-color: #0081c5;
  font-size: 21px;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 1em;
}

.joblist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.joblist li {
  font-size: 0.9em;
}
.joblist li img {
  vertical-align: bottom;
  margin-right: 2px;
}