h2 {
	position: relative;
	padding-left: 25px;
	font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	}
	h2:before {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 0;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 15px transparent;
	border-bottom: solid 15px rgb(18, 136, 179);
	}
	h2:after {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 10px;
  	right: 0;     /* 追加 */
  	width: auto;  /* 追加（または削除） */
	border-bottom: solid 3px rgb(18, 136, 179);
	}
body {
	color: black;
	background:white;
	font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
table{
	width: 100%;
	border-collapse:separate;
	border-spacing: 0;
	table-layout: fixed;
	}

	table th:first-child{
	border-radius: 5px 0 0 0;
	}

	table th:last-child{
	border-radius: 0 5px 0 0;
	border-right: 1px solid #3c6690;
	}

	table th{
	text-align: center;
	color:white;
	background: linear-gradient(#2786bd,#3aa9dd);
	border-left: 1px solid #3c6690;
	border-top: 1px solid #3c6690;
	border-bottom: 1px solid #3c6690;
	box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
	/*width: 15%;*/
	padding: 10px 0;
	}

	table td{
	text-align: center;
	border-left: 1px solid #a8b7c5;
	border-bottom: 1px solid #a8b7c5;
	border-top:none;
	box-shadow: 0px -3px 5px 1px #eee inset;
	/*width: 15%;*/
	padding: 10px 0;
	}
	th.name {
		width: 25%;
	}
	th.reco {
		width: 7%;
	}

	table td:last-child{
	border-right: 1px solid #a8b7c5;
	}

	table tr:last-child td:first-child {
	border-radius: 0 0 0 5px;
	}
	table tr:last-child td:last-child {
	border-radius: 0 0 5px 0;
}
.btn-submit{
	width: 100px;
	height: 40px;
	padding: 5px 5px;
	border-radius: 8px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 4px solid #aaa;
	background-image: none;
	background-color: rgb(18, 136, 179);
	font-size: 15px;
	font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #fff;
	}
	.btn-submit:active{
	border-bottom: none;
	background-color: rgb(134, 126, 177);
}
.textbox{
	width: 100%;
	border-radius: 6px;
	box-sizing: border-box;
	margin-bottom: 12px;
	padding: 2px 10px 2px 10px;
	border-top: 1px solid #aaa;
	border-left: 1px solid #aaa;
	border-right: 2px solid #aaa;
	border-bottom: 2px solid #aaa;
	background-image: none;
	background-color: #ffffff;
	font-size: 12px;
	font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	text-align:right
}

.textbox2{
    width: 100%; /*親要素いっぱい広げる*/
    padding: 10px 15px; /*ボックスを大きくする*/
    font-size: 16px;
    border-radius: 3px; /*ボックス角の丸み*/
    border: 2px solid #ddd; /*枠線*/
    box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
}

@media (max-width: 480px) {
  table {
    table-layout: auto;   /* fixed を解除 */
  }
}
