/* プロフィール編集テーブル・フォーム用モダンデザイン */
.profile-edit-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0px 24px;
  margin: 0 0 24px 0;
}
.profile-edit-block h2 {
  color: #008080;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.profile-edit-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.profile-edit-table td {
  padding: 10px 8px;
  vertical-align: middle;
  font-size: 0.8rem;
}
.profile-edit-table td:first-child {
  color: #008080;
  font-weight: 600;
  width: 140px;
  background: #f0fafa;
  border-radius: 8px 0 0 8px;
  border-right: 2px solid #e0f0f0;
}
.profile-edit-table td:last-child {
  background: #f8ffff;
  border-radius: 0 8px 8px 0;
}
.profile-edit-table input[type="text"],
.profile-edit-table input[type="password"],
.profile-edit-table select,
.profile-edit-table textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #b2dfdf;
  border-radius: 6px;
  font-size: 0.8rem;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.profile-edit-input,
input[type="email"].profile-edit-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
    background: #fff;
    color: #222;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.profile-edit-table input[type="text"]:focus,
.profile-edit-table input[type="password"]:focus,
.profile-edit-table select:focus,
.profile-edit-table textarea:focus {
  border-color: #008080;
  background: #f0fafa;
}
.profile-edit-table input[type="file"] {
  border: none;
  background: none;
  font-size: 1rem;
}
.profile-edit-table img {
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #b2dfdf;
  background: #f8ffff;
}
.save-btn {
  margin-top: 24px;
  background: linear-gradient(90deg, #008080 60%, #00b3b3 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,128,128,0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.save-btn:hover {
  background: linear-gradient(90deg, #00b3b3 0%, #008080 100%);
  box-shadow: 0 4px 16px rgba(0,128,128,0.12);
}
