@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　    #0242B4
背景　　　　　        　#F0EEE7
オレンジ　　　　　　　　#F4A43B
ピンク　　　　　　　　　#F43BD2
メインブロック背景      #F7F7F6

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

@media screen and (max-width: 795px) {

}
@media screen and (max-width: 420px) {
	
}

--------------------------------------------------*/


/*------------------------------------------
委員長挨拶
------------------------------------------*/
/*紹介ブロック*/
.person_introduction {
	margin: 20px 20px 60px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 30px 20px;
}
/*市長写真*/
.photo_block {
	width: 200px;
}

.photo_block img {
	vertical-align: top;
	width: 100%;
	border-radius: 0;
}

/*肩書き*/
.greeting_title {
	font-family: selif;
	font-size: 14px;
	font-weight: 600;
	text-align: right;
}
.greeting_name {
	font-family: selif;
	font-size: 18px;
	font-weight: 600;
	text-align: right;
}
.greeting_name span {
	font-size: 14px;
}

@media screen and (max-width: 420px) {
	.person_introduction {
		flex-wrap: nowrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.name {
		order: 1;
	}
	.photo_block {
		order: 0;
	}
	.greeting_title {
		font-size: 11px;
	}
	.greeting_name span {
		font-size: 12px;
	}
	.photo_block {
		width: 180px;
	}
}

