/* CSS Document */
.page_title h2::before{
	content: "Message";
}
/*コンテンツ*/
.greeting_wrap{
	box-sizing: border-box;
	display: flex;
}
body[wc-view-code="sp"] .greeting_wrap,
body[wc-view-type="tb"] .greeting_wrap{
	
	flex-direction: column;
}
body[wc-view-code="sp"] .greeting_wrap{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="tb"] .greeting_wrap{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="pc"] .greeting_wrap{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.greeting_wrap .g_title{
	box-sizing: border-box;
}
body[wc-view-type="tb-l"] .greeting_wrap .g_title{
	width: 350px;
}
body[wc-view-code="pc"] .greeting_wrap .g_title{
	width: 450px;
}
.greeting_wrap .g_title .contents_title::before{
	content: "Message";
}
.greeting_wrap .g_text{
}
body[wc-view-code="sp"] .greeting_wrap .g_text{
	margin-top: 1.25rem;
}
body[wc-view-type="tb"] .greeting_wrap .g_text{
	margin-top: 1.25rem;
}
body[wc-view-type="tb-l"] .greeting_wrap .g_text{
	width: calc(100% - 350px);
	margin-top: 77px;
}
body[wc-view-code="pc"] .greeting_wrap .g_text{
	width: calc(100% - 450px);
	margin-top: 77px;
}
.greeting_wrap .g_text > p{
	line-height: 2rem;
}
body[wc-view-code="sp"] .greeting_wrap .g_text > p{
	line-height: 1.8rem;
}
.greeting_wrap .g_text > p:not(:first-of-type){
	margin-top: 0.75rem;
}
.greeting_wrap .g_text > .name{
	width: fit-content;
	display: flex;
	align-items: center;
	margin-left: auto;
	gap:0.5rem;
	margin-top: 1.25rem !important;
}

body[wc-view-code="sp"] .greeting_wrap .g_text > .name{
	margin-top: 1rem !important;
}
.greeting_wrap .g_text > .name *{
	font-weight: 700;
}
.greeting_wrap .g_text > .name .position{
	font-size: 0.9rem;
}
.greeting_wrap .g_text > .name .name_box{
	font-size: 1.2rem;
}