/* CSS Document */
    body {
      font-family: 'Arial', sans-serif;
      background: #f9fcfe;
      margin: 0;
      padding: 0;
    }
        #pageHeader {
            text-align: center; /* ヘッダー内の画像を中央に配置 */
        }
    .green-line {
        width: 95%; /* 幅を95%に設定 */
        height: 5px;
        background-color: #0197B4;
        margin: 0 auto; /* 左右のマージンを自動にして中央に配置 */
    }
    header {
      background: #0197B4;
      color: #fff;
      padding: 20px;
      text-align: center;
    }
    .hero {
      padding: 80px 20px 40px;
      text-align: center;
      background: linear-gradient(135deg, #e0f7fa, #ffffff);
      position: relative;
    }
    .hero h1 {
      font-size: 36px;
      color: #0197B4;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 20px;
      margin: 10px 0;
    }
    .hero .price-tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #ff5722;
      color: #fff;
      padding: 10px 20px;
      font-size: 24px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    footer {
      background: #f0f0f0;
      text-align: center;
      padding: 20px;
      color: #666;
      margin-top: 40px;
    }
        #main {
            display: flex;
            flex-direction: column; /* 子要素を縦に並べる */
            justify-content: center;
            align-items: center;

        }
        .form-container {
            margin-top: 40px;
            border: 2px solid #ccc; /* フォームを囲む枠線 */
            padding: 20px;
            border-radius: 20px; /* 角を丸める */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 影をつけて見栄えをよくする */
            background-color: #f9f9f9; /* フォームの背景色 */
            max-width: 700px;
            min-width: 450px;
        }
        #loginForm {
            text-align: center; /* フォーム内のテキストを中央に配置 */
        }
    .input-group {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    .input-group label {
        width: 120px; /* ラベルの固定幅を設定 */
        margin-right: 10px;
        text-align: right; /* ラベルを右寄せ */
    }
    .input-group input[type="text"],
    .input-group input[type="email"],
    .input-group input[type="password"] {
        width: 50%; /* 入力ボックスの幅を調整 */
        padding: 10px;
        border: 2px solid #2912F7;
        border-radius: 10px;
    }

        #loginForm input[type="submit"] {
            width: 50%; /* ボタンを長くする */
            padding: 10px;
            background-color: #0197B4; /* ボタンの背景色 */
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        #loginForm input[type="submit"]:hover {
            background-color:#0197B4; /* ホバー時の色 */
        }
        #footer {
            text-align: center; /* フッター内のテキストを中央に配置 */
            margin-top: 20px; /* 少し余白を追加して上の要素と分ける */
        }
        #pp{
            margin: 4px 0; /* 各フッター要素に少し余白を追加 */
            font-weight: bold;
        }
        .topindex{
            font-size: 20px;
            font-weight: bold;
            padding-left: 8%;
            text-align: left;
        }
        #acc{
            font-weight: 900;
            color: #F80404;
            margin: 4px 0; /* 各フッター要素に少し余白を追加 */
        }
         .topindex1{
            font-size: 20px;
            font-weight: bold;
            padding-left: 8%;
            text-align: center;
        }   
.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table th,
.form-table td {
    padding: 5px;
    vertical-align: top;
}

.form-table th {
    width: 170px;
    text-align: right;
    font-weight: bold;
    background-color: #f7f7f7;
}

.form-table td {
    text-align: left;
}
button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.submit-button {
    width: 300px;
    padding: 15px;
    background-color: #d9534f;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.submit-button:hover {
    background-color: #c9302c;
}

.form-note {
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
}

.submit-cell {
    text-align: center;
    padding-top: 20px;
}

        #loginForm1 {
            text-align: center; /* フォーム内のテキストを中央に配置 */
        }
        #loginForm1 input[type="submit"] {
            width: 340px; /* ボタンを長くする */
            padding: 10px;
            background-color: #4CAF50; /* ボタンの背景色 */
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        #loginForm1 input[type="submit"]:hover {
            background-color: #45a049; /* ホバー時の色 */
        }
/*******************************************************/
.title1{
    color: aliceblue;
    font-size: 26px;
    text-align: center;
}
    .container {
      max-width: 700px;
      margin: auto;
    }
    .signup-box {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
    }
    .signup-box h2 {
      margin-bottom: 20px;
      color: #0197B4;
    }
    input[type="text"], input[type="password"] {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    button {
      background-color: #0197B4;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 15px;
    }
    .note {
      font-size: 12px;
      margin-top: 20px;
      color: #666;
    }
    h1 {
      font-size: 28px;
      color: #0197B4;
    }
    h2 {
      font-size: 20px;
      margin-top: 30px;
      color: #444;
    }
    .highlight {
      color: #e53935;
      font-weight: bold;
    }
    .cta-button {
      background-color: #0197B4;
      color: white;
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      margin-top: 30px;
      text-decoration: none;
      display: inline-block;
    }
.select-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 30px; /* ラベルとセレクトの間に少し余白 */
}

.select-label {
  font-size: 16px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.4); /* 淡いグレー */
  font-family: 'Arial', sans-serif;
  min-width: 80px; /* 必要に応じて調整 */
}

/* select ボックスのカスタマイズ */
.select-box {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  transition: border 0.2s ease, background-color 0.2s ease;
  min-width: 200px;
}

.select-box:focus {
  outline: none;
  border: 1px solid #4CAF50;
  background-color: #fff;
}

.select-box:hover {
  border-color: #999;
}