/* 全体の背景設定 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* 画面の高さを最低限確保 */
    display: flex;
    flex-direction: column; /* 縦方向に要素を並べる */
    justify-content: flex-start; /* 上寄せ */
    align-items: center;
    background: #f8f9fa;
}

/* ログインフォームのコンテナ */
.login-container {
    margin-top: 5vh; /* 上に少し余裕を持たせる */
    margin-bottom: 5vh;
    background: rgb(255, 255, 255);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 80%;
    max-width: 350px; /* 小さめに調整 */
    backdrop-filter: blur(8px);
}
  
  /* ロゴのデザイン */
  .logo {
    margin-bottom: 0.8rem;
  }
  
  .logo img {
    width: 320px; /* 小さめに調整 */
    height: auto;
  }
  
  /* 見出しのデザイン */
  h1 {
    color: #000000;
    font-size: 1.6rem; /* 小さめ */
    margin-bottom: 1rem;
  }
  
  /* 入力フィールドのグループ */
  .input-group {
    margin-bottom: 1rem;
    text-align: left;
  }
  
  /* ラベルのデザイン */
  label {
    display: block;
    font-size: 0.9rem; /* 小さめ */
    color: #000000;
    margin-bottom: 0.3rem;
  }
  
  /* 入力フィールド */
  input {
    width: calc(100% - 16px);
    /*max-width: 320px;*/
    padding: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.2); /* 薄いグレーの枠線 */
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    display: block;
    /*margin: 0 auto;*/
  }
  
  input::placeholder {
    color: #8b8b8b;
  }

  /* 入力フィールドのフォーカス時のデザイン */
input:focus {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(173, 216, 230, 0.8); /* 薄い青の枠 */
    box-shadow: 0px 0px 8px rgba(173, 216, 230, 0.7); /* ふんわり光る */
    transition: 0.3s ease-in-out;
  }

  /* ラジオボタンに対して幅を自動調整 */
input[type="radio"] {
    width: auto;
    /* 必要に応じて他のスタイルも追加 */
}

.email-notice {
    font-size: 0.85rem;
    color: #8b8b8b;
    margin-top: 5px;
    display: block;
  }
  
  
/* ボタン */
.btn {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background: #ff7f50;
    border: 1px solid #ff7f50;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    margin: 30px auto 0;
    font-weight: bold;
  }
  
  .btn:hover {
    background: #ff6347;
  }

  /* ボタン */
.btn2 {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background: #ff7f50;
    border: 1px solid #ff7f50;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    margin: 10px auto 0;
    font-weight: bold;
  }
  
  .btn2:hover {
    background: #ff6347;
  }
  
  /* リンクのデザイン */
  .links {
    margin-top: 0.8rem;
  }
  
  .links a {
    display: block;
    font-size: 0.8rem; /* 小さめ */
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .links a:hover {
    color: #000000;
    text-decoration: underline;
  }
  
/* 無料会員登録ボタン */
.register-btn {
    display: block; /* ブロック要素にする */
    width: 100%;
    max-width: 320px;
    padding: 10px 0px 10px 0px;
    font-size: 1rem;
    color: #ff7f50;
    background: #ffffff;
    border: 1px solid #ff7f50;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    /*font-weight: bold;*/
    margin: 30px auto 0;
  }
  
  .register-btn:hover {
    background: #ff7f50;
    color: #fff;
  }
  
/* メッセージ表示 */
.result-message {
    margin-top: 15px;
    padding: 5px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #9e0404;
    text-align: center;
    font-weight: bold;
}

.result-message.success {
    background-color: #d4edda;
    color: #155724;
}

.result-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

    /* モーダルのスタイル */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
      }
      .modal-content {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        width: 300px;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      .close-btn {
        margin-top: 10px;
        padding: 10px;
        width: 100%;
        background-color: #ff7f50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }

    /* 国籍選択（ラジオボタン）のスタイル */
    .radio-group {
        display: flex;
        /*justify-content: center;*/
        gap: 40px; /* ラジオボタン間のスペース */
        margin-bottom: 1rem;
        margin-left: 10px;
        align-items: center; /* ラジオボタンとテキストを縦に中央揃え */
    }

    /* 保有車両（ラジオボタン）を縦に表示するスタイル */
    .radio-group2 {
        display: flex;
        flex-direction: column; /* 縦に並べる */
        gap: 10px; /* ラジオボタン間のスペース */
        margin-bottom: 1rem;
        margin-left: 10px;
        align-items: flex-start;
    }

    .radio-group label,
    .radio-group2 label {       
        display: inline-flex; /* インラインフレックスに変更 */
        text-align: left; /* テキストを左寄せ */
        font-size: 1rem;
        margin: 0; /* ラベル内の余白をリセット */
        gap: 8px; /* ラジオボタンとテキストの間隔 */
        white-space: nowrap; /* 改行しないようにする */
    }

    .radio-group input,
    .radio-group2 input {
        margin-right: 5px; /* ラジオボタンとテキストの間隔 */
        /*accent-color: #ff7f50;*/ /* オレンジ色に */
        transform: scale(1.3); /* 少し大きく */
    }

   

  
  /* 都道府県ドロップダウンのスタイル */
  select {
    width: calc(60% - 16px);
    max-width: 320px;
    padding: 8px;
    margin-left: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    /*display: block;*/
    appearance: none; /* デフォルトの矢印を非表示 */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
  }
  
  /* ドロップダウンホバー・フォーカス時 */
  select:hover,
  select:focus {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(173, 216, 230, 0.8);
    box-shadow: 0px 0px 8px rgba(173, 216, 230, 0.7);
    transition: 0.3s ease-in-out;
  }
  


  /* レスポンシブ対応 */
  @media (max-width: 480px) {
    body {
        font-family: 'Arial', sans-serif;
        display: flex;
        /*justify-content: center;*/
        align-items: center;
        background: #f8f9fa;
      }

      .login-container {
        position: sticky;
        top: 5vh; /* 画面上部からの距離 */
        z-index: 10; /* 他の要素の上に表示されるように */
    }

      .radio-group,
      .radio-group2 {
        flex-direction: column; /* 縦に並べる */
        gap: 10px; /* ラジオボタンの間隔を調整 */
        align-items: flex-start; /* 左寄せ */
    }

    .radio-group label,
    .radio-group2 label {
        font-size: 0.85rem; /* 少し小さくする */
    }

  
    h1 {
      font-size: 1.4rem;
    }
  
    input {
      font-size: 0.85rem;
    }
  
    .btn, .register-btn {
      font-size: 0.9rem;
    }
  
    .logo img {
      width: 250px;
    }
  }
  
 .privacy-check {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
}

.custom-checkbox input {
  flex-shrink: 0;
  margin-right: 0.5em;
}


  .checkbox-large {
    width: 25px;
    height: 25px;
}