@charset "UTF-8";
/* =============================================================================

company

============================================================================= */

.message img {border-radius: 10px;}

p.name {text-align: right;}
.name span {
	display: inline-block;
	margin-right: 16px;
	color: #002f5d;
	font-size: 16px;
	vertical-align: middle;
}
.name strong {
	display: inline-block;
	vertical-align: middle;
	font-size: 28px;
}

/*________________________________________________________

PC
________________________________________________________*/

@media only screen and (min-width: 741px) {

.message {
	width: 85%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.message img {width: 90%;}
.message div { width: 90%;}
p.name {margin-top: 64px;}
.name span {font-size: 16px;}
.name strong {font-size: 28px;}

}

/*________________________________________________________

SP
________________________________________________________*/

@media only screen and (max-width: 740px) {

.message img {
	display: block;
	width: 80%;
	margin: 0 auto 16px auto;
}
.message div p.name {margin-top: 32px;}
.message div p.name span {font-size: 14px;}
.message div p.name strong {font-size: 22px;}

}



