@charset "UTF-8";

/* CSS Document */
/*
kv
-----------------------------------------------------------------------------------------------*/
.kvWrapper .ctsArea {
	position: relative;
	justify-content: space-between;
	width: 100%;
	min-width: 1000px;
	max-width: 1600px;
	padding: 80px 0 0 90px;
}

.kvWrapper {
	display: flex;
	justify-content: space-between;
	min-height: 515px;
}

/* ロゴと「戻る」ボタンのあるヘッダー */
.storyHeadArea {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 35px;
	background: #FFFBF6;
}

.storyBackLogo {
	display: inline-block;
	width: auto;
}

.storyBackLogo img {
	display: block;
	height: 75px;
	transition: filter 0.3s;
}

.storyBackLogo:hover {
	opacity: 0.3;
}

.storyKvTitArea {
	position: relative;
	width: fit-content;
	margin-top: 50px;
}

.storyTit {
	position: relative;
	font-size: 7rem;
	z-index: 1000;
	margin-bottom: 27px;
}

.storyKvReadArea {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-left: 100px;
}

.storyKvReadArea p {
	width: fit-content;
	color: var(--clrWhite);
	background: #000;
	font-size: 3.4rem;
	font-weight: 500;
	letter-spacing: 0.5rem;
	padding: 0 13px;
	z-index: 1000;
	white-space: nowrap;
}

.storyKvImgArea {
	position: absolute;
	right: 0;
}

/*
storyTxtWrapper
-----------------------------------------------------------------------------------------------*/
#storyTxtWrapper {
	display: flex;
	justify-content: center;
	padding-bottom: 80px;
}

#storyTxtWrapper .ctsArea {
	flex-direction: column;
	justify-content: flex-end;
	max-width: 800px;
}

.storyTxtWrapperTit {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 2.9rem;
	font-weight: 500;
	white-space: nowrap;
	position: relative;
	text-align: center;
	margin-bottom: 50px;
}

.storyTxtWrapperTit::before,
.storyTxtWrapperTit::after {
	content: "";
	display: block;
	width: 22%;
	height: 1px;
	background: #000;
	transform: translateY(27px);
}

/* storyTxtWrapperTitの文章が長く2行になる場合、クラス名.storyTxtTitLongを付与 */
/* 左右の線の位置調整 */
.storyTxtTitLong::before,
.storyTxtTitLong::after {
	transform: translateY(50px);
	width: 16%;
}

.storyTxtWrapperTxt {
	font-size: 1.5rem;
	line-height: 200%;
	text-align: justify;
}

.storyTxtWrapperTxt span {
	color: var(--clrDarkOrange);
}

.storyTxtImg {
	margin: 45px 0;
}

/* キャリアアドバイザーのコメント欄 */
.storyTxtAdvisorArea {
	display: flex;
	gap: 30px;
	width: 100%;
	border: 1px solid #B2B2B2;
	border-radius: 20px;
	padding: 30px 30px 24px 30px;
	margin: 60px 0 40px;
}

.storyTxtAdvisorProfile {
	font-weight: 500;
}

.storyTxtAdvisorProfile p {
	font-size: 1.1rem;
	margin-top: 4px;
}

.storyTxtAdvisorProfile p span {
	font-size: 1.5rem;
}

.storyTxtAdvisorTxt {
	color: var(--clrDarkOrange);
	text-align: justify;
	line-height: 200%;
	margin-top: 14px;
}

/* 次のStoryへのボタン */
.anotherStoryArea {
	display: flex;
	justify-content: flex-end;
}

.anotherStory {
	position: relative;
	display: block;
	width: 120px;
	color: var(--clrDarkOrange);
	text-align: right;
	transform: translateX(30px);
	transition: all 0.3s;
}

.anotherStory:hover {
	color: var(--clrBrightOrange);
}

.anotherStory::before,
.anotherStory::after {
	position: absolute;
	content: "";
	transition: all 0.3s;
}

.anotherStory::before {
	bottom: 5px;
	right: -38px;
	width: 24px;
	height: 1px;
	background: #000;
}

.anotherStory::after {
	bottom: -10px;
	right: -36px;
	width: 12px;
	height: 14px;
	border-top: 1px solid #000;
	transform: translateY(-50%) rotate(36deg);
}

.anotherStory:hover::before {
	right: -42px;
	background: var(--clrBrightOrange);
}

.anotherStory:hover::after {
	right: -40px;
	border-top: 1px solid var(--clrBrightOrange);
}

/*
レスポンシブ
-----------------------------------------------------------------------------------------------*/
@media screen and (max-width:812px) {
	.storyHeadArea {
		justify-content: center;
		gap: 0;
		padding: 20px;
	}

	.storyBackLogo img {
		width: 120px;
		height: auto;
	}

	.storyBack {
		text-align: right;
	}

	.storyBack::before {
		left: 18px;
	}

	.storyBack::after {
		left: 21px;
	}

	/* kv
	============================== */
	.kvWrapper {
		justify-content: center;
		min-width: 300px;
		min-height: 300px;
		padding: 30px 20px 15px;
	}

	/* 各storyのkvイラスト */
	.kvWrapper01 {
		background: url(../images/story01_pic_nakamura_sp.png) no-repeat center center / cover;
	}

	.kvWrapper02 {
		background: url(../images/story02_pic_satou_sp.png) no-repeat center center / cover;
	}

	.kvWrapper03 {
		background: url(../images/story03_pic_kimura_sp.png) no-repeat center center / cover;
	}

	.kvWrapper .ctsArea {
		min-width: 300px;
		height: fit-content;
		padding: 0;
	}

	.storyKvTitArea {
		margin-top: 190px;
	}

	.storyTit {
		font-size: 4.8rem;
		margin-bottom: 10px;
	}

	.storyKvReadArea {
		gap: 9px;
		margin: 0;
	}

	.storyKvReadArea p {
		font-size: 2.1rem;
	}

	.storyKvImgArea {
		display: none;
	}

	/*
	storyTxtWrapper
	-----------------------------------------------------------------------------------------------*/
	#storyTxtWrapper {
		padding: 50px 0;
	}

	#storyTxtWrapper .ctsArea {
		max-width: 500px;
	}

	.storyTxtWrapperTit {
		font-size: 2rem;
		margin-bottom: 25px;
	}

	.storyTxtWrapperTit::before,
	.storyTxtWrapperTit::after {
		width: 15%;
		transform: translateY(26px);
	}

	/* storyTxtWrapperTitの文章が長く2行になる場合、クラス名.storyTxtTitLongを付与 */
	/* フォントサイズ調整 */
	.storyTxtTitLong {
		font-size: 1.5rem;
	}

	.storyTxtWrapperTxt {
		font-size: 1.4rem;
	}

	.storyTxtImg {
		margin: 27px 0;
	}

	.storyTxtAdvisorArea {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		padding: 20px;
		margin: 40px 0;
	}

	.storyTxtAdvisorProfile {
		display: flex;
		flex-direction: column;
		max-width: 150px;
	}

	.storyTxtAdvisorTxt {
		margin-top: 0;
	}

	.storyTxtAdvisorProfile p span {
		display: block;
		margin-top: 3px;
	}

	.storyTxtAdvisorTxt {
		line-height: 170%;
	}

	.anotherStoryArea {
		justify-content: flex-start;
	}

	.anotherStory {
		width: auto;
		text-align: left;
		transform: unset;
	}

}