@charset "UTF-8";
/* CSS Document */

#note{
	margin: 80px 10px;
}

body{
	background-color: #F6A8AC;
}

#note .container{
	background-color: white;
	padding: 20px;
}

#note h2{
	font-size: 18px;
	color: #F6A8AC;
	text-align: center;
	border-bottom: double #F6A8AC 3px;
	margin-bottom: 40px;
}

#note h3{
	font-size: 15px;
	color: #4D4D4D;
	text-align: left;
	margin-bottom: 5px;
	text-decoration: underline;
}

#note p{
	font-size: 13px;
	color: #4D4D4D;
	line-height: 1.8;
	margin-bottom: 40px;
	padding-bottom:10px;
	border-bottom: double #F6A8AC 3px;
}

/*ボタンデザイン*/
.note_btn{
	display: inline-block;
	border: solid 3px #F6A8AC;
	border-radius: 20px;
	font-weight: bold;
	padding: 10px 20px;
	font-size: 13px;
	color: white;
	transition: all 0.6s;
	cursor: pointer;
	background-color: #F6A8AC;
}

.note_btn:hover{
	background-color: white;
	color: #F6A8AC;
}