body{
	font-family: "BIZ UDPGothic";
}

h1 {
	background: #ff8082;
	color: #000000;
	padding: 0.5rem 1rem;
    font-size:xx-large;
    font-weight: bold;
}

h2 { 
    position: relative;
    border-bottom: 4px solid #77d9a8;
    padding: 2px 0;                       /*文字の余白*/
    font-weight: bold;
    font-size: x-large;
    }

h2:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 20%;
	height: 4px;
	content: '';
	background: #fff100;
	}

h4 { 
	position: relative;
	padding: 2px 0;                       /*文字の余白*/
	font-weight: normal;
	font-size: normal;
	}

h5 { 
	padding: 0.5rem 1rem;
	color: #84919e;
	position: relative;
	padding: 2px 0;                       /*文字の余白*/
	border-top: 2px solid #77d9a8;
	font-weight: normal;
	font-size: normal;
	}

h5:before {
	position: absolute;
	left: 0;
	top: -2px;
	width: 20%;
	height: 2px;
	content: '';
	background: #fff100;
	}

a{
	color:inherit;
	text-decoration: none;
}

.font_test01 {
	font-weight: bold;
	color: #ff4b00;     /* 文字色指定 */
}
.font_test02 {
	font-weight: bold;
	color: #005aff;     /* 文字色指定 */
}

.button {
        width:150px;
        display       : inline-block;
        border-radius : 15%;
        font-size     : large;        /* 文字サイズ */
        font-weight: bold;
        text-align    : center;      /* 文字位置   */
        cursor        : pointer;     /* カーソル   */
        padding       : 12px 12px;   /* 余白       */
        background    : #4dc4ff;     /* 背景色     */
        color         : #000000;     /* 文字色     */
        line-height   : 1em;         /* 1行の高さ  */
        transition    : .3s;         /* なめらか変化 */
        box-shadow    : 4px 4px 2px #666666;  /* 影の設定 */
        border        : 2px solid #4dc4ff;    /* 枠の指定 */
    }

.button:hover {
        box-shadow    : none;        /* カーソル時の影消去 */
        color         : #4dc4ff;     /* 背景色     */
        background    : #000000;     /* 文字色     */
    }


table {
	margin:0px;
	padding: 0;
	border-collapse: collapse;
	border-bottom: #dddddd 1px solid;
	width: 640px;
}

th {
	padding: 12px 10px;
	background-color: #F5f5f5;
	border: #dddddd 1px solid;
    text-align: left;
    vertical-align: middle;
	width: 30%;
	line-height: 180%
}

td {
	padding: 12px 10px;
	border: #dddddd 1px solid;
    text-align: left;
    vertical-align: middle;
	line-height: 200%
}

@media screen and (max-width: 640px) {
	.table-mobile {
    width: 100%;
	}
	.table-mobile th,
	.table-mobile td {
		width: auto;
		border-bottom: none;
		display: block;
		text-align: left;
	}
	.table-mobile td {
		text-align: left;
	}
}

html {
	scroll-behavior: smooth; /スムーズなスクロール/
}

ul,ol{
	margin: 0 0 0 0em;
	padding-top:2px;
	padding-bottom:2px;
	padding-right:2em;
	padding-left:1.4em;
}

