@charset "UTF-8";

/* トップメッセージ
--------------------------------------------------*/
.greeting h1 {
	color: #1c3458;
	font-weight: bold;
	font-size: 32px;
	font-size: 3.2rem;
	line-height: 1;
	margin: 100px auto 30px;
	width: 1000px;
}
	.photoBlock {
		display: flex;
		display: -ms-flexbox;
		justify-content: space-between;
	}
	.photoBlock figure {
		width: 400px;
		text-align: center;
	}
	.photoBlock div {
		order: -1;
		width: calc(100% - 100px);
	}
		.photoBlock div h2 {
			text-align: left;
		}
	.greeting p + p {
		margin-top: 1em;
	}

@media screen and (max-width: 767px) {
.greeting h1 {
	font-size: 27px;
	font-size: 2.7rem;
	margin: 20px 0;
}
	.photoBlock {
		display: block;
	}
	.photoBlock figure {
		width: 100%;
		margin-bottom: 15px;
	}
		.photoBlock figure img {
			max-width: 250px;
		}
	.photoBlock div {
		width: 100%;
	}
}
