@charset "UTF-8";
/*--------------------------------------------------
カラー設定
薄紫　#E2E7F3
濃紫　#7E6FB3
濃紫（青）　#3F3E69

@media screen and (max-width: 795px) {

}
@media screen and (max-width: 420px) {
	
}

--------------------------------------------------*/
/*------------------------------
ご挨拶
--------------------------------*/

/*プロフィール*/
.profile {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin: 0 0 20px;
	padding: 0 0 20px;
	width: 100%;
	gap: 20px;
	border-bottom: 1px solid #E2E7F3;
}
.photo {
	order: 1;
	width: 150px;
	height: 200px;
	background-color: #D7D7D7;
	flex: 0 0 150px;
}
.profile_text {
	order: 0;
	display: inline-block;
	padding: 10px 20px;
	border-top: 1px solid #7E6FB3;
	border-bottom: 1px solid #7E6FB3;
}
.role, .name, .belong {
	margin: 8px 0;
	padding: 0;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	text-align: right;
}
.role {
	font-size: 15px;
}
.name {
	font-size: 21px;
	font-weight: 800;
}
.belong {
	font-size: 15px;
}
@media screen and (max-width: 420px) {
	.profile {
		flex-direction: column-reverse;
		align-items: center;
	}
	.photo {
		flex: 0 0 200px;
	}
}

/*挨拶文*/
.greeting_text p {
	margin: 0;
	padding: 0;
	line-height: 2em;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}