/* ページ全体のスタイル */





/* 主要コンテナ */
.nyuryoku {
    width: 100%;
    max-width: 80%;
    padding: 20px;
    background-color: transparent;
    text-align: center;
    margin: 0 auto; /* 水平方向の中央寄せ */
    padding-top: 50px; /* ヘッダー分など上部に余白を確保 */
}

/* 警告テキスト */
.warning-text {
    font-size: 18px;
    color: #FF5733;
    margin-bottom: 15px;
}

/* 注意事項を中央揃え */
.warning-section {
    text-align: center;
    margin-bottom: 20px;
}

.warning-section h1 {
    font-size: 40px;
    color: red;
    margin-bottom: 10px;
}

.warning-section h2 {
    font-size: 20px;
color: #dadada;
    line-height: 1.5;
        text-shadow: 3px 3px 5px #333;
}

.warning-section p {
    font-size: 15px;
color: #8e9394;
    line-height: 1.5;
    margin-top: 0; /* マージンをリセットして見出しとの間隔を調整 */
}

/* 注意事項見出し */
.mIdasi {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;

    color: #5f5f5f;

}

/* 注意事項詳細 */
.mOji {
    font-size: 16px;
    margin-top: 8px;
    color: #b6dff8;
}

.naiyou{
    text-align: center;
}

/* フォームのスタイル */
form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

/* フォームのラベルと入力フィールド */
label {
    display: block;
    margin-bottom: 8px;

    color: #bababa;
    text-align: center;
}

input[type="text"],
input[type="password"] {
    width: 80%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}

button {

  padding: 10px 20px;
  font-size: 16px;
  background: linear-gradient(to top left, #3c3c3c,#4c4c4c );
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
    background-color: #007BFF;
    color: white;
}

/* フォーム全体を下げる .container のスタイルは不要 */
/* .container {
    margin-top: 50px;
} */