@charset "utf-8";
/* CSS Document */

/* ページスタイル
----------------------------------------------------------- */

.greeting_profile {
	display: flex;
	align-items: flex-end;
	margin-bottom: 0px!important;
}

.greeting_profile figure {
	margin: 0 20px 20px 0;
	min-width: 170px;
}

.greeting_profile p {
	diplay: inline-block;
	vertical-align: bottom;
}


@media screen and (max-width: 1199px) {	/* PC固定幅からのブレイクポイント */
	
}

@media screen and (max-width: 959px) {	/* タブレットからのブレイクポイント */
	
}

@media screen and (max-width: 479px) {	/* スマートフォンからのブレイクポイント */
	
	.greeting_profile {
		display: block;
	}
	
	.greeting_profile figure {
		margin: 0 auto 20px;
		min-width: auto;
	}
	
}