@charset "uft-8";

.ouen_list_ttl {
  color: var(--color-main);
  font-size: 30px;
  font-weight: 700;
  line-height: calc(40/30);
  text-align: center;
  margin: 40px 0 16px;
}
.ouen_list_txt {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(24/18);
  text-align: center;
  margin: 0 0 16px;
}
.search_form_wrap {
  padding: 18px 0;
  background: #f5f5f5;
}
.search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.search_form_label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.search_form_input {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 14px;
  width: 295px;
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
}
.search_result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  max-width: 1070px;
  padding: 35px 0;
  margin-inline: auto;
}
.search_result img {
  display: block;
  width: calc(100%/3 - 16px*2/3);
  height: auto;
}

#ouen_search_btn {
 background-color: #222;
 color: #fff;
 width: 100px;
 padding: 8px;
 border-radius: 8px;
 margin-left: -100px;
}
#ouen_search_btn i {
 margin-right: 0.2rem;
}
@media (max-width: 768px) {
  .ouen_list_ttl {
    font-size: 20px;
    line-height: calc(26/20);
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .ouen_list_txt {
    font-size: 14px;
    line-height: calc(20/14);
    margin-bottom: 15px;
  }
  .search_form_wrap {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .search_form {
    display: block;
  }
  .search_form_label {
    display: block;
    width: 295px;
    max-width: 100%;
    margin-inline: auto;
  }
  .search_form_input {
    display: block;
    margin-inline: auto;
    margin-top: 10px;
  }
  .search_result {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 24px;
  }
  .search_result img {
    width: 100%;
    max-width: 265px;
  }

    #ouen_search_btn {
      margin: -37px 0 0 auto;
     display: block;
    width: 50px;
  }
  #ouen_search_btn span {
    display: none;
  }
  #ouen_search_btn i {
    margin-right: 0;
  }
}