.p-flex-center {
  display: flex;
  align-items: center;
}
.ui-autocomplete {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}

.row {
	display: flex;
	align-items: left;
}

.label2 {
	width: 600px; /* ラベルの幅を調整 */
}

.label3 {
	vertical-align: top;
	width: 25px;
}

.label4 {
	vertical-align: 100%;
	width: 130px;
}

.container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .label {
            width: 130px; /* ラベルの幅を調整 */
        }

        .label3 {
            vertical-align: top;
            width: 25px; /* ラベルの幅を調整 */
        }
        .label4 {
            vertical-align: 100%;
            width: 130px; /* ラベルの幅を調整 */
        }
        .label5 {
            width: 90px; /* ラベルの幅を調整 */
        }
        .textbox {
            width: 250px; /* テキストボックスの幅を調整 */
            height: 50px; /* テキストボックスの高さを調整 */
            font-size: 2rem;
        }
        .textbox2 {
            width: 50px; /* テキストボックスの幅を調整 */
            height: 50px; /* テキストボックスの高さを調整 */
            font-size: 2rem;
        }
        .textbox3 {
            width: 600px; /* テキストボックスの幅を調整 */
            height: 50px; /* テキストボックスの高さを調整 */
            font-size: 2rem;
        }

        .status-box {
            display: inline-block;
            padding: 10px;
            background-color: #ffffff; /* 背景色を設定 */
            border-radius: 5px; /* 角を丸くする */
            display: flex;
            justify-content: center; /* 水平方向の中央揃え */
            align-items: center; /* 垂直方向の中央揃え */
        }
        .status-text {
            color: red; /* 文字色を赤に設定 */
            font-size: 30px; /* フォントサイズを設定 */
            font-weight: bold; /* フォントを太字に設定 */
            display: flex;
            justify-content: center; /* 水平方向の中央揃え */
            align-items: center; /* 垂直方向の中央揃え */
        }
        .status-message {
            color: black; /* 文字色を赤に設定 */
            font-size: 20px; /* フォントサイズを設定 */
            font-weight: bold; /* フォントを太字に設定 */
            display: flex;
            justify-content: center; /* 水平方向の中央揃え */
            align-items: center; /* 垂直方向の中央揃え */
        }
        .row .autocomplete-items {
            border: 1px solid #d4d4d4;
            border-bottom: none;
            border-top: none;
            z-index: 99;
            position: absolute;
            background-color: #fff;
            max-height: 150px;
            overflow-y: auto;
            max-height: 300px;
            overflow-y: auto;
            top: 100%;
            left: 160;
            width: 100%;
        }
        .autocomplete-item {
            padding: 10px;
            cursor: pointer;
        }
        .autocomplete-item:hover {
            background-color: #e9e9e9;
        }