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

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: url(../images/bg.jpg);
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro";
	color: #37a8e9;
}

.container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 40px 20px 0 20px;
}

.container .heading{
	width: 80%;
	padding-bottom: 30px;
}

.container .heading h3{
	font-size: 3em;
	font-weight: bolder;
	padding-bottom: 10px;
	border-bottom: 3px solid #37a8e9;
}

.container .heading h3 span{
	font-weight: 100;
}

.container .heading h4{
	text-align: center;
	font-size: 2em;
	margin: 10px 0;
}


.container .box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.container .box .dream{
	display: flex;
	flex-direction: column;
	width: 32.5%;
}

.container .box .dream img{
	width: 100%;
	padding-bottom: 15px;
	border-radius: 5px;
}

.container .btn {
	padding-bottom: 10px;
}
.container .btn a{
	color: #37a8e9;
	font-size: 1em;
	text-decoration: none;
	font-weight: bolder;
	letter-spacing: 1px;
}

@media only screen and (max-width: 769px){
	.container .box{
	flex-direction: column;
	}
	.container .box .dream{
	width: 100%;
	}
} 

@media only screen and (max-width: 643px){
	.container .heading{
	width: 100%;
	}

	.container .heading h3{
	font-size: 1em;
	}

} 