/* 全体レイアウト */
body.base {
    background-color: #f5f5f5;
    font-family: "Yu Gothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ラベル列（左側） */
.header-col {
    background-color: #b0cde6;
    font-weight: bold;
    padding: 10px;
    text-align: right;
    border-right: 1px solid #dee2e6;
    color: #333;
}

/* 必須マーク */
.hissu {
    color: #dc3545;
    font-weight: bold;
    margin-left: 6px;
}

/* 入力欄（右側） */
.item-col {
    background-color: #f6f6f6;
    padding: 10px;
}

.item-col input,
.item-col textarea,
.item-col select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

/* エラーメッセージ */
.error-msg {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ボタンエリア */
.btn-area {
    text-align: center;
    margin-top: 30px;
}

.btn-area button {
    min-width: 120px;
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1rem;
}

/* OKボタン */
.btn-require {
    background-color: #ffd5ea;
    border: none;
}

.btn-require:hover {
    background-color: #eea2d3;
}

/* リセットボタン */
.btn-light {
    background-color: #dddddd;
    border: none;
}

.btn-light:hover {
    background-color: #a9a9a9;
}
