@charset "utf-8";

/*ヘッダーの設定*/
.headerMain{
    height: 60px;
    background-color: #20486d;
}

/*ヘッダーのロゴ装飾*/
.headerLogo {
    width: 220px;
    height: 35px;
    margin: 10px 0 0 30px;
    color: #fff;
    font-weight: bold;
    font-size: 21px;
    background: #20486d;
    text-align: center;
    border: 3px solid;
}
.headerLogo_a {
	display: block;
    width: 220px;
    height: 35px;
	float: left;
}
/*注意事項全体の設定*/
.notes{
    margin: 10px auto;
    padding: 15px;
    border: #bdbdbd 1px solid;
    border-radius: 9px;
    background-color: #fff;
    width: 90%;
    max-width: 750px;
    height: 40vh;
    overflow-y: scroll;
}

.notes p {
    font-size: 0.8em;
}

.keep_notes{
	padding: 0;
	border: none;
	background-color: transparent;
	overflow-y: auto;
	
}

/*注意事項の装飾*/
.cautionTopic{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

/*中見出しの装飾*/
.subTopic{
    font-size: 15px;
    font-weight: bold;
    margin-top: 15px;
}

/*注意事項確認のチェックボックスのサイズや配置*/
.agree{
    font-size: 18px;
    text-align: center;
    padding: 10px;
}
.agree label{
    cursor: pointer;
}
.agree input[type=checkbox]{
    margin: 10px;
    transform: scale(2);
}

/*ボタンの配置*/
.buttonArea{
    text-align: center;
}

/*checkボタンの装飾*/
.checkButton{
    width: 280px;
    height: 45px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #88deca;
    color: #ffffff;
    margin: 20px;
    cursor: pointer;
}
button.checkButton:hover{
    border-radius: 5px;
    background-color: #10b98a;
}