@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　　　　　#0900BC
グリーン　　　　　　　　　　#75BC00
背景あいじろ　　　　　　　　#ebf6f7
オレンジ　　　　　　　　　　#F4A43B
ピンク　　　　　　　　　　　#F43BD2

@media screen and (max-width: 795px) {

}
@media screen and (max-width: 420px) {
	
}

--------------------------------------------------*/
/*------------------------------
会長挨拶
--------------------------------*/
.profile_block {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 0 40px 0;
	padding: 20px 0;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 20px;
	border-bottom: 1px solid #CECECE;
}
.profile_block .title {
	font-family: serif;
	font-size: 14px;
	text-align: right;
}
.profile_block .title span {
	font-size: 18px;
	font-weight: 600;
}
.profile_block .photo {
	width: 150px;
	border: 5px solid white;
	box-shadow: 0 0 4px 2px rgba(0,0,0,0.1);
}
.profile_block .photo img {
	vertical-align: top;
	width: 100%;
}
@media screen and (max-width: 420px) {
	.profile_block{
		flex-direction: column-reverse;
		align-items: center;
	}
}