@CHARSET "UTF-8";

html {
	background-color: #ffffff;
}

body {
	background-color: #ffd7c4;
	border-radius: 80px;
	padding: 10px;
}

p{
	text-align: center;
	margin: 3px;
}

h1 {
	text-align: center;
	color: #004080;
	margin: 2px;
}

table {
	margin-left: auto;
	margin-right: auto;
	border-spacing: 0px 8px;
}

table tr td select {
	width: 200px;
	height: 30px;
}

table tr td.title {
	background: linear-gradient(transparent 50%, #ffffff 95%);
}

@media screen and (min-width: 321px) and (max-width:420px) { /* スマホ対応 */
	table th {
		font-size: 13px;
	}
}

@media screen and (max-width: 320px) { /* スマホ対応 */
	h1 {
		font-size: 30px;
	}
}
#chart {
    position: relative;
    margin: 0 auto;
    width: 80%;
    max-width: 500px;
}
#chart-text {
    display: flex;
    align-items: center;/* フレックスの縦方向 */
    justify-content: center;/* フレックスの横方向 */
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    font:20px fantasy;
    text-align: center;
    pointer-events: none;
}
.box {
  display        : flex;
}