@charset "UTF-8";
/*--------------------------------------------------
カラー設定
濃いレッド　　　　　　　#D10043
背景ブラック　　　　　　#00041B
オレンジ　　　　　　　　#F4A43B
ピンク　　　　　　　　　#F43BD2

グラデーション
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;
	}
	.profile .flex_wrapper {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
	}
}

/*名前*/
.name {
	width: 300px;
	hieght: 80px;
	padding: 10px;
	/* 方眼紙模様に必須のスタイル */
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #def6ff calc(100% - 1px)),
					linear-gradient(90deg, transparent calc(100% - 1px), #def6ff calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
	background-color: #f1fbff;
  	border: 1px solid #6fcaff;
}
.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;
}

/*本文*/
.contents {
	width: 100%;
}
.contents p {
	margin: 0;
	line-height: 1.7em;
}
