@charset "utf-8";
/* ---------------------------------------- /
/
/ kidsroom.css
/
/ ---------------------------------------- */

/* kidsroom-photo */
.kidsroom-photo {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items:stretch;
	margin: 50px auto 80px auto;
}
.kidsroom-photo p {
	width: 49%;
}
.kidsroom-photo p img {
	width: 100%;
	max-width: 560px;
	height: auto;
}
@media screen and (max-width: 768px) {
.kidsroom-photo {
	display: block;
}
.kidsroom-photo p {
	width: 100%;
	margin-bottom: 1.0rem;
	text-align: center;
}
}

.spacer {margin-bottom: 8.0rem;}
.mb10 {margin-bottom: 1.0rem;}


/* separate3 */
.separate3 {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items:stretch;
	padding: 30px 0;
}
.separate3 .box {
	width: 48%;
	padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 10px -5px #777777;
    background: #fff;
}
.separate3 .box .point {
    width: 60px;
	color: #fff;
    background: #E07C00;
    padding: 1px 5px;
    margin: 0 auto;
	text-align: center;
}
.separate3 .box h4 {
	text-align: center;
	font-weight: 600;
	font-size: 2.0rem;
	line-height: 3.0rem;
	margin: 1.0rem 0 0 0;
	vertical-align: middle;
	min-height: 50px;
}
.separate3 .box p {
	overflow-wrap:  break-word;
}
@media screen and (max-width: 1024px) {
	.separate3 {
		display: block;
		padding-top: 0;
	}
	.separate3 .box {
		width: 100%;
		margin:50px 0;
	}
}