@charset "UTF-8";
/* CSS Document */

.messagePage #cmnPageKvWrapper{
	margin-bottom: 0;
}

/*
	KV
-----------------------------------------------------------------------------------------------*/
.messagePageKvAreaWrapper{
	width: var(--widthBase);
	margin:  0 auto;
	padding-inline: 30px;
}
.messagePageKvArea{
    display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
    min-height: 450px;
	padding-inline: 100px 170px;
	background: url("../images/ph_message_bg_pc.png") no-repeat center center / cover;
    border-radius: var(--br50);
	position: relative;
}

/* キャッチ
============================== */
.messagePageCatch{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.messagePageCatch > *{
    line-height: 1.0;
}
.messagePageCatch span{
    padding: 8px 10px;
    font-size: 3.0rem;
    font-weight: 600;
    color: var(--colorPrimary);
    letter-spacing: 0.1rem;
    background-color: #fff;
}

/* プロフィール
============================== */
.messagePageProfile{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.messagePageProfile .job{
    font-size: 1.4rem;
}
.messagePageProfile .name{
    display: flex;
	flex-direction: column;
    gap: 10px;
    font-size: 2.6rem;
	line-height: 1.0;
}
.messagePageProfile .name .en{
	font-family: var(--ffEn);
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 0.1rem;
	color: var(--colorPrimary);
}

/* 画像
============================== */
.messagePageKv{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(calc(-50% + 60px));
}


/*
	インタビューエリア
-----------------------------------------------------------------------------------------------*/
.messageCtsAreaWrapper{
	display: flex;
	flex-direction: column;
	gap: 80px;
	width: var(--width1000);
	margin: 0 auto;
}
[class^="messageCtsArea"]{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
[class^="messageCtsArea"]:nth-of-type(odd){
	flex-direction: row-reverse;
}
[class^="messageCtsArea"] .txtArea{
	width: calc(100% - 470px);
}
[class^="messageCtsArea"] .txtArea .tit{
	margin-bottom: 20px;
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--colorPrimary);
}
[class^="messageCtsArea"] .txtArea .txt{
	text-align: justify;
	line-height: 2.0;
}
[class^="messageCtsArea"] .img{
	width: 420px;
	border-radius: var(--br30);
}

/* 1ブロックめ
============================== */
.messageCtsFirstWrapper{
	margin-top: -60px;
	margin-bottom: 80px;
	background-color: #fff;
}
.messageCtsAreaFirst{
	width: 800px;
	margin: 0 auto;
	padding-block: 120px 60px;
}
.messageCtsAreaFirst .txtArea{
	width: 100%;
}

/* サインエリア
============================== */
.signArea{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}
.signArea .txt{
	font-size: 1.4rem;
}
.signArea .sign{
	width: 170px;
}


@media screen and (max-width:812px){
	/*
		KV
	-----------------------------------------------------------------------------------------------*/
	.messagePageKvAreaWrapper{
		max-width: 500px;
		padding-inline: 25px;
	}
	.messagePageKvArea{
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		gap: 20px;
		min-height: 400px;
		padding-inline: 25px;
		padding-top: 25px;
		background: url("../images/ph_message_bg_sp.png") no-repeat center center / cover;
	}

	/* キャッチ
	============================== */
	.messagePageCatch{
		gap: 5px;
	}
	.messagePageCatch span{
		padding: 6px;
		font-size: 1.8rem;
		letter-spacing: 0;
	}

	/* プロフィール
	============================== */
	.messagePageProfile{
		gap: 10px;
	}
	.messagePageProfile .job{
		font-size: 1.0rem;
		line-height: 1.5;
	}
	.messagePageProfile .name{
		gap: 5px;
		font-size: 1.8rem;
	}
	.messagePageProfile .name .en{
		font-size: 1.0rem;
	}

	/* 画像
	============================== */
	.messagePageKv{
		width: 200px;
		left: auto;
		right: 25px;
		transform: translateX(0);
	}


	/*
		インタビューエリア
	-----------------------------------------------------------------------------------------------*/
	.messageCtsAreaWrapper{
		gap: 60px;
	}
	[class^="messageCtsArea"]{
		flex-direction: column;
	}
	[class^="messageCtsArea"]:nth-of-type(odd){
		flex-direction: column;
	}
	[class^="messageCtsArea"] .txtArea{
		width: 100%
	}
	[class^="messageCtsArea"] .txtArea .tit{
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	[class^="messageCtsArea"] .txtArea .txt{
		line-height: 1.8;
	}
	[class^="messageCtsArea"] .img{
		width: calc(100% - 40px);
		/* max-width: 300px; */
		margin-top: 20px;
	}

	/* 1ブロックめ
	============================== */
	.messageCtsFirstWrapper{
		margin-top: -30px;
		margin-bottom: 60px;
	}
	.messageCtsAreaFirst{
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		padding-inline: 25px;
		padding-block: 60px 30px;
	}
	.messageCtsAreaFirst .txtArea{
		width: 100%;
	}

	/* サインエリア
	============================== */
	.signArea{
		gap: 5px;
		width: 100%;
		padding-right: 20px;
	}
	.signArea .txt{
		font-size: 1.0rem;
		line-height: 1.5;
	}
	.signArea .sign{
		width: 120px;
	}
}