@charset "UTF-8";
/*--------------------------------------------------
カラー設定

メインカラー	グリーン　#0EB998 
薄いグリーン　			 #EAF5F3 
濃いグリーン　　　　　　#013700
濃いブルー　　　　　　　#009AA2

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

ブレークポイント
$breakpoints: (
  "pc": "screen and (min-width: 796px)",
  "tablet": "screen and (max-width: 795px)",
  "sp": "screen and (max-width: 420px)",
  "small-screen": "screen and (max-width: 320px)",
);

--------------------------------------------------*/

/*------------------------------
ご挨拶
--------------------------------*/
.profile_block {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	text-align: right;
	background-image: linear-gradient(90deg, rgba(5,53,95,0.60), rgba(5,16,26,0.60)),url("../greeting/images/title_image.jpg");
	background-size: cover;
	background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: left top;          /* 背景の位置指定 */
}
.photo_block {
	display: inline-block;
	padding: 10px;
	width: 200px;
	height: auto;
}
.photo_block img {
	width: 100%;
	vertical-align: top;
	border-radius: 10px;
}
.profile_content {
	position: absolute;
	width: 240px;
	background-color: rgba(255,255,255,0.70);
	padding: 6px;
	top: 110px;
	right: 200px;
}
@media screen and (max-width:420px){
	.profile_block {
		text-align: center;
		height: 288px;
		background-image: none;
	}
	.profile_content {
		position: static;
		margin: 0 auto;
	}
}
.profile_content p {
	margin: 0;
}
.profile_content .position, .profile_content .belong {
	font-size: 12px;
}
.profile_content .name {
	font-weight: 600;
}

/*本文*/
.contents_block {
	margin-top: 10px;
	padding: 10px;
	background-color: #F1F0EB;
	border-radius: 10px;
}