@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    font-family: 'Noto Sans JP', sans-serif; /*ゴシック*/
}

html {
    height:100%;
}

body{
    background-color: #eee;
    height:100%;
}

#root {
    height:100%;
    /*background-color: #e00;*/
}

button {
    cursor:pointer;
    user-select: none;
}

.column {
    display:flex;
    flex-direction: column;
}

.row {
    display:flex;
    flex-direction: row;
}

.wrap{
    flex-wrap: wrap;
}

button[type=submit]{
    color: #fff;
    background-color: #06e;  
    border-radius: 100vh;
    border: none;
}

button[type=submit]:hover {
    color: #fff;
    background: #07f;
}


input[type=radio] {
    height: 20px;
    width: 40px;
    cursor:pointer;
}


select {
    font-size: 16px;
    height: 30px;
    width: 300px;
    border-radius: 10px;    /*角丸く*/
    padding-left: 8px;
}

select:focus {
    outline: solid 3px #49f3;
    border: 2px solid #49f;
}

textarea {
    font-size: 16px;
    height: 150px;
    width: 300px;
    border-radius: 10px;    /*角丸く*/
    padding-left: 8px;
}

textarea:focus {
    outline: solid 3px #49f3;
    border: 2px solid #49f;
}

.center {
    margin: auto;
}

.center_v {
    margin-top: auto;
    margin-bottom: auto;
}