@charset "Shift_JIS";
.box{
	width: 95%;
	background-color: #55cffd;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	color: white;
	font-size: 24px;
	font-family: メイリオ;
	font-weight: bolder;
}
 
.kadomaru{
	/* 全部角丸 */
	border-radius: 10px 10px 10px 10px;
}
 
 
.kadomaru_top{
	/* 上だけ角丸 */
	border-radius: 10px 10px 0px 0px;
}
 
.kadomaru_bottom{
	/* 下だけ角丸 */
	border-radius: 0px 0px 10px 10px;
}
 
.kadomaru_left{
	/* 左だけ角丸 */
	border-radius: 10px 0px 0px 10px;
}
 
.kadomaru_right{
	/* 右だけ角丸 */
	border-radius: 0px 10px 10px 0px;
}
 
.kadomaru_top_left{
	/* 左上だけ角丸 */
	border-radius: 10px 0px 0px 0px;
}
 
.kadomaru_top_right{
	/* 右上だけ角丸 */
	border-radius: 0px 10px 0px 0px;
}
 
.kadomaru_bottom_right{
	/* 右下だけ角丸 */
	border-radius: 0px 0px 10px 0px;
}
 
.kadomaru_bottom_left{
	/* 左下だけ角丸 */
	border-radius: 0px 0px 0px 10px;
}

.box1{
	width: 95%;
	background-color: #e7f8fe;
	padding-top: 10px;
	padding-bottom: 10px;
}

.box2{
	width: 95%;
	background-color: #ffeeee;
	padding-top: 10px;
	padding-bottom: 10px;
}

.box3{
	width: 95%;
	border-width: 1px;
	border-style: solid;
	border-color: #039eda;
}

.box-s{
	width: 90%;
	border-width: 1px;
	border-style: solid;
	border-color: fuchsia;
	background-color: #fcf9f1;
	margin-left: auto;
	margin-right: auto;
}


@media screen and (max-width: 640px) {

.box1{
	width: 100%;
}

.box2{
	width: 100%;
}

.box3{
	width: 100%;
}

}