@charset "UTF-8";
/*--------------------------------------------------

カラー設定
濃いブルー　　　　　　　　　#0020FF
薄いブルー　　　　　　　　　#0093FF


グラデーション
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) {

}

--------------------------------------------------*/

/*==================================================
ご挨拶
==================================================*/

/*フロフィール*/
.profile {
	margin-bottom: 20px;
	padding-bottom: 20px;
	width: 100%;
	height: 250px;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: flex-end;
	border-bottom: 1px solid #C1ACB3;
}
/*flex*/
.profile .flex_wrapper {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	align-items: flex-end;
	justify-content: flex-end;
}
@media screen and (max-width: 420px) {
	.profile {
		height: auto;
		padding-top: 10px;
		align-items: center;
		justify-content: center;
	}
	.profile .flex_wrapper {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
	}
}

/*名前*/
.name {
	padding: 10px;
}
.title, .belong {
	font-size: 12px;
	color: #363636;
	text-align: right;
}
.chairman {
	font-size: 18px;
	font-weight: 600;
	color: #363636;
	text-align: right;
}
.chairman span {
	font-size: 12px;
}

/*画像*/
.image {
	width: 180px;
}
.image img {
	width: 100%;
	vertical-align: top;
}

/*本文*/
.greeting_contents {
	width: 100%;
}
.greeting_contents p {
	margin: 0;
	line-height: 1.8em;
	font-family: selif;
	text-align: justify;
}
