﻿@charset "UTF-8";

/* トップメッセージ
--------------------------------------------------*/
.message {
	background: #fff;
}
	.photoBlock {
		display: flex;
		display: -ms-flexbox;
		justify-content: space-between;
	}
	.photoBlock figure {
		width: 400px;
		text-align: center;
	}
	.photoBlock div {
		order: 1;
		width: calc(100% - 500px);
	}
		.photoBlock div h2 {
			text-align: left;
		}
	.message p + p {
		margin-top: 1em;
	}
	.message h3 {
		text-align: center;
		font-size: 24px;
		font-size: 2.4rem;
		margin-bottom: 20px;
		padding-bottom: 10px;
		position: relative;
	}
/* 
	.message h3:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
		width: 5em;
		height: 3px;
		background: #6da5db;
		-webkit-transition: 0.5s;
						transition: 0.5s;
	}
	*/
@media screen and (max-width: 767px) {
.message {
	background: #fff;
}
	.photoBlock {
		display: block;
	}
	.photoBlock figure {
		width: 100%;
		margin-bottom: 15px;
	}
		.photoBlock figure img {
			max-width: 250px;
		}
	.photoBlock div {
		width: 100%;
	}
}