/* common jumbotron */
.jumbotron {
	display: flex;
	align-items: center;
    gap: 9%;
    justify-content: flex-end;
}
.jumbotron + .jumbotron {
	margin-top: 80px;
}
.jumbotron .text-group {
	margin: 0 0 0 60px;
}
.jumbotron.reverse {
	flex-direction: row-reverse;
}
.jumbotron.reverse .text-group {
	margin: 0 60px 0 0;
}
.jumbotron .text-group .title {
	margin-bottom: 22px;
	font-size: 40px;
	color: var(--tit-color);
	font-weight: 700;
}
.jumbotron .text-group .desc {
	line-height: 30px;
	font-size: 18px;
	font-weight: 400;
}
.jumbotron .text-group .desc strong {
	font-weight: 600;
}
.jumbotron .mobile-img {
	display: none;
}
.jumbotron iframe {
	width: 600px;
	height: 337px;
}

/* jumbotron-type01 */
.jumbotron-type01 .text-group,
.jumbotron-type01.reverse .text-group {
    max-width: 600px;
	margin: 0;
}
.jumbotron-type01 .overflow-right {
	position: relative;
	top: 0;
	right: -140px;
}
.jumbotron-type01 .overflow-left {
	position: relative;
	top: 0;
	left: -140px;
}

/* jumbotron-type02 */
.jumbotron-type02 {
	align-items: stretch;
	width: 1106px;
	margin: 0 auto;
}
.jumbotron-type02 .thumb-group {
	position: relative;
}
.jumbotron-type02 .thumb-group button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.jumbotron-type02 .text-group {
	display: flex;
	align-items: center;
	padding: 0 74px;
	margin: 0;
	background-color: #e6e5f3;
	border-radius: 0 8px 8px 0;
}

/* jumbotron-type03 */
.jumbotron-type03 {
    justify-content: space-between;
    padding: 40px 160px;
    background: #817dc5;
    box-shadow: 0 5px 10px #00000029;
    border-radius: 5px;
}
.jumbotron-type03 p {
	font-size: 32px;
    color: #fff;
    font-weight: 700;
}
.jumbotron-type03 .btn-handout {
	display: flex;
	align-items: center;
	margin-left: 20px;
	line-height: normal;
}

/* jumbotron-type04 */
.jumbotron-type04 {
	align-items: flex-start;
}

@media screen and (max-width: 720px) {
	/* jumbotron */
	.jumbotron .text-group .title {
		font-size: 26px;
	}
	.jumbotron .text-group .desc {
		font-size: 16px;
	}

	/* jumbotron-type03 */
	.jumbotron-type03 {
		flex-direction: column;
		padding: 15px 40px;
	}
	.jumbotron-type03 p {
		font-size: 24px;
	}
	.jumbotron-type03 .btn-handout {
		margin: 10px 0 0 0;
	}
}