@charset "utf-8";
/* 地域フォーム */

  .tiki-search-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    margin: 30px auto;
    font-family: "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .tiki-search-form h3 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2em;
  }

  .tiki-search-form_sp {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    margin: 30px auto;
    font-family: "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .tiki-search-form_sp h3 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2em;
  }

  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    font-size: 0.9em;
  }
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
  }
  /* 読み込み中や未選択時のスタイル */
  .form-control:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
  }
  .submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .submit-btn:hover {
    background-color: #b71c1c;
  }
  .note {
    font-size: 0.8em;
    color: #888;
    text-align: center;
    margin-top: 10px;
  }
