/* 20230623 */
/* 以下はサイトデザインと揃えるために改造・追加した箇所 */

form.changeName{ /* フォーム全体の装飾 */
   max-width:100%;
   box-sizing:border-box;
}
form.changeName ul:not([class]){ /* 入力ボックスの配置 */
   list-style: none;
   display: flex;
   flex-wrap: wrap;
   flex-direction: row; /* row:横並び column:縦並び */
   justify-content: center; /* flex-start:左寄せ center:真ん中 flex-end:右寄せ */
   gap: 3px; /* 要素間のスペ―ス（必要なら） */
}

form.changeName fieldset{ /* フィールドセットを打ち消す */
  border: none;
  margin: 0;
  padding: 0;
}

form.changeName legend{ /* フィールドセットのキャプションを打ち消したい*/
    width: 0px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
}


form.changeName input {/* 入力ボックスの見た目？ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

form.changeName input[type=text] {/* 入力ボックスの見た目 */
  width: 130px;
  border: none;
  border-bottom: 1px solid #7a9a92;
  margin: 0 5px;
  padding: 5px;
  font-size: 16px;
  text-align: center;
}

form.changeName input[type=text]:focus {/* 入力しようとしたら色を変える */
  outline: none;
  background: #e6f3f7;
}

form.changeName label{  /* 項目名を消す */
	position: fixed !important;
	top:0; left:0; width:1px; height:1px;
	opacity:0 !important; overflow:hidden !important; border:none !important;
	margin:0; padding:0; display:block !important; visibility:visible !important; }

.process input[type="submit"]{ /* 登録削除実行ボタンの装飾 */
  display:flex;
  border: none;
  padding: 5px 15px;
  font-size: 16px;
  background: #7a9a92;
  color: #ffffff;
  border-radius: 5px;
  margin: 10px auto;
}

.process input[type="submit"]:hover { /* ホバー時登録削除実行ボタンの装飾 */
  outline: none;
  background: #c3f4e8;
  cursor: pointer;
}
