/* title-page */
.title-page {
	display: flex;
	align-items: center;
	min-height: 300px;
}
.title-page .inner {
	position: relative;
}
.title-page .inner:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.title-page .title-text {
	position: relative;
	color: #fff;
	font-size: 45px;
	font-weight: 700;
	z-index: 1;
}
.title-page .sub-title-text {
	position: relative;
	margin-top: 10px;
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	color: #808080;
	z-index: 1;
}

/* title-page bg-type01 */
.title-page.bg-type01 {
	background-color: #1bcbfe;
}
.title-page.bg-type01 .inner:after {
	right: -350px;
	width: 860px;
	height: 300px;
	background: url('/images/title_page/bg_page_title01.png') 0 0 no-repeat;
}

/* title-page title-page-type02 */
.title-page-type02 {
	min-height: 350px;
}
.title-page-type02 .title-text {
	color: #191919;
}
.title-page-type02 .btn-console {
	display: flex;
	position: relative;
	margin-top: 20px;
	z-index: 1;
}
.title-page-type02 .btn-console .button {
	width: 185px;
}
.title-page-type02 .btn-console .button + .button {
	margin-left: 30px;
}

/* title-page-type02 bg-type01 */
.title-page-type02.bg-type01 {
	background-color: #f7f9fc;
}
.title-page-type02.bg-type01 .inner:after {
	right: -130px;
	width: 474px;
	height: 266px;
	background: url('/images/title_page/bg_page_title02.png') 0 0 no-repeat;
}

/* title */
.section-title-type01 {
	font-size: 50px;
	color: #000;
	font-weight: 700;
	letter-spacing: -.02em;
}
.section-sub-title-type01 {
	line-height: 34px;
	font-size: 22px;
}
.section-title-type02 {
    color: var(--tit-color);
	font-size: 40px;
	font-weight: 700;
}

@media screen and (max-width: 720px) {
	/* title-page */
	.title-page .title-text {
		/* font-size: 37px; */
		font-size: 30px;
	}
	.title-page.bg-type01 .inner:after {
		display: none;
	}

	/* title-page title-page-type02 */
	.title-page-type02 {
		padding: 20px 0;
	}
	.title-page-type02 .btn-console {
		justify-content: center;
	}
	.title-page-type02 .btn-console .button {
		width: 150px;
	}
	.title-page-type02 .btn-console .button + .button {
		margin-left: 10px;
	}    

	/* title */
	.section-title-type01 {
		font-size: 34px;
	}
	.section-title-type02 {
		font-size: 24px;
	}
}