/*共通レイアウト*/

body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    border-radius: 5px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    margin-top: 100px !important;
}

h2 {
    text-align: center;
    background: #000;
    color: #fff;
    margin-top: 5% !important;
    padding: 1% 0;
}

.flex {
    display: flex;
    align-items: center;
}

textarea {
    width: 100%;
}

/*更新ボタン*/
.update_parent {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

.update_child {
    background: #4CAF50;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 200px;
}

.update_parent:hover,
.update_child:hover {
    background-color: #3e8e41;
}


/*その他*/

.submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    border-radius: 25px;
}

.submit-button:hover {
    background-color: #0056b3;
}

.standard {
    margin: 5% 0;
    border: solid 1px #333;
}

.standard_heading {
    background: #e6e6e6;
    text-align: center;
    padding: 1% 0;
    font-weight: 900;
    font-size: 20px;
}

.standard_heading+p {
    padding: 1%;
}

.dropdown {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 200px;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #3e8e41;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 200px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*調査員名や調査店舗名セクションなどのレイアウト*/

.meta-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px #333;
}

.meta-group th {
    width: 150px;
    text-align: left;
    background: #005bab;
    color: #fff;
}

.meta-group th label {
    text-align: center;
}

.meta-group td {
    display: flex;
    width: 350px;
    text-align: left;
    padding: 1%;
    align-items: center
}

.meta-group label {
    display: block;
    margin-bottom: 5px;
}

.meta-group input,
.meta-group select,
.meta-group textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.meta-group label span {color:red;}

/*１～６のレイアウト*/

.form-group_parent {
    display: flex;
    border: solid 1px #333;
}

.form-group_child {
    display: block;
    margin: 1%;
}

.form-group_parent {
    width: 100%;
}

.form-group_parent label {
    width: 40%;
    border-right: solid 1px #333;
    background: #e6e6e6;
    padding: 1%;
}

.form-group_parent .form-group_child {
    width: 60%;
}

.form-group_parent label span {
    font-weight: 900;
}

.submit-button {
    width: 50%;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 2% 0;
}

.human_q {margin-top:5%;}
