/* サーチセクション */

.search-section input[type="text"],
.search-section input[type="email"] {
  width: 200px;
}


/* PCスタイル */
.search-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.unit-search-form{
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}


.unit-search-form {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
  }
  
  .unit-search-form > div {
    display: flex;
    flex-direction: column;
  }
  
  .unit-search-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .unit-search-form input[type="text"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 200px;
  }
  
  .unit-search-form select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 150px;
  }
  
  .unit-search-form select[name="event"] {
    width: 250px;
  }
  
  .unit-search-form button[type="submit"] {
    margin-top: 20px;
    background: var(--unit-color);
    color: white;
  }
  
  .unit-search-form .btn {
    margin-top: 20px;
  }
  
  .unit-search-form .btn[style*="background-color: #6c757d"] {
    background-color: #6c757d;
  }
  .unit-search-form input[type="text"] {
    padding: 8px;
    border
Shorthand property for setting border width, style, and color.
Learn more

Don't show
: 1px solid #ddd;
    border-radius: 3px;
    width: 200px;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}


/* モバイルスタイル */
@media (max-width: 768px) {
    .search-section {
        display: flex; 
        gap: 15px; 
        align-items: end; 
        flex-wrap: wrap;  }
    .search-section input[type="text"],
    .search-section input[type="email"] {
        width: 100%;
        }
}
