#search {
  width: 100%;
  margin: 5px 0;
  border: solid 2px #62B6CC;
  font-size: 1.4rem;
}
  .search-head {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #62B6CC;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
  }
    .search-head img {
      height: 32px;
      margin-right: 10px;
    }
  .search-body {
    border-collapse: initial;
    width: 100%;
  }
    .search-body th {
      width: 25%;
      height: 36px;
      background: #f0eee2;
      font-size: 14px;
    }
      .search-body td nobr {
        display: inline-block;
        width: 48%;
        margin-bottom: 3px;
        font-size: 14px;
      }
      /*
      .search-body input[type=radio],
      .search-body input[type=checkbox] {
        position: relative;
      }
      .search-body input::before,
      .search-body input::after {
        content: "";
        position: absolute;
        display: block;
        top: -3px;
        transition: opacity 0.3s;      
      }
      .search-body input[type=radio]::before {
        left: -6px;
        width: 16px;
        height: 16px;
        background: #fff;
        border: solid 2px #ccc;
        border-radius: 50%;
      }
      .search-body input[type=radio]::after {
        left: -6px;
        width: 9px;
        height: 9px;
        border: solid 6px #005591;
        border-radius: 50%;
        opacity: 0;
      }
      .search-body input[type=checkbox]::before {
        left: -6px;
        width: 16px;
        height: 16px;
        background: #fff;
        border: solid 2px #ccc;
        border-radius: 3px;
      }
      .search-body input[type=checkbox]::after {
        left: -6px;
        width: 16px;
        height: 16px;
        background: #005591;
        background-image: url(/images/checkbox.png);
        background-size: 100% 100%;
        border: solid 2px #005591;
        border-radius: 3px;
        opacity: 0;
      }
      .search-body input[type=radio]:checked::after,
      .search-body input[type=checkbox]:checked::after {
        opacity: 1;
      }
      */


  .search-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
  }
  .search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 40px;
    background: #ff7200;
    box-shadow: 0 3px 3px  orangered;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }

  .search_option_th {
    padding-left: 1em;
    text-align: left;
  }
    .search_option_th::before {
      content: "+";
      margin-right: 0.5em;
      font-size: 14px;
    }
      .search_option_th.open::before {
        content: "-";
      }
  .search_option_td {
    display: none;
    padding: 0 5px;
  }
    .search_option_td.open {
      display: table-cell;
    }

  @media screen and (min-width: 768px) {
  .search-head {
    font-size: 1.6rem;
  }
  .search-body td nobr {
    width: 24%;
  }
  .search-toggleoption,
  .search-button {
    width: 400px;
  }
}

.search-toggleoption {
  width: 240px;
  margin: 0 auto;
  padding: 0.5rem 0;
  background: #555;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}