<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
body,
#wrapper{
	background-color: inherit;
}

.jp section.first {
	padding: 90px 0 0 0;
}
#bg_fix{
	z-index                 : -1;
	background-color        : #1a1a1a;
	background-image        : url('../images/bg.jpg');
	background-repeat       : no-repeat;
	background-size:cover;
	position                : fixed;
	top                     : 0;
	left                    : 0;
	right                   : 0;
	bottom                  : 25px;
	width: 100%;
	height: 100%;
	content: "";
	background-position:top center;
	display:block;
}

h1 {
	width: 100%;
	padding: 210px 0;
	font-size: 40px;
	font-weight: normal;
	line-height: 1.4;
	color: #fff;
	text-shadow: 0 0 10px #000, 0 0 5px #000;
}

.jp_title {
	max-width: 900px;
	margin: 0 auto 40px auto;
	font-size: 30px;
	line-height: 1.4;
	text-align: center;
	font-weight: normal;
	color: #fdd207;
}
.jp_inner {
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
.jp_inner p,
.jp_inner ul {
	margin-top: 10px;
}
.jp_inner ul li {
	position: relative;
	padding-left: 18px;
}
.jp_inner ul li:before {
	position: absolute;
	top: 0.85em;
	left: 2px;
	content: "";
	border-radius: 4px;
	background-color: #fff;
	width: 4px;
	height: 4px;
}
.jp_youtube {
	width: 100%;
	max-width: 900px;
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.jp_youtube iframe {
	width: 100%;
	height: 100%;
}
.read_more {
	margin-top: 80px;
	text-align: center;
}
.read_more a span {
	padding: 20px 250px;
	color: #fdd207;
	border: 1px solid #fdd207;
	background-color: #000;
	border-radius: 100px;
	width: 500px;
	margin: 0 auto;
	font-size: 22px;	
	background-image: url(../../../images/arrow-y.svg);
	background-repeat: no-repeat;
	background-size: 16.5px 30px;
	background-position: 93% center;
	transition: all 0.3s ease-in-out 0s;
}
.read_more a:hover span {
    color: #000;
	background-color: #fdd207;
	background-image: url(../../../images/arrow-on.svg);
	background-position: 95% center;
	transition: all 0.3s ease-in-out 0s;
}

.document_contents {
	width: 100%;
	margin: 120px 0 0 0;
	padding: 0;
}
.first + .document_contents {
	margin: 0;
}

.document_imagelist {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	width: 95%;
	max-width: 1500px;
	margin: 40px auto;
}
.document_imagelist:last-child {
	margin-bottom: 0;
}
.document_imagelist li {
	width: 100%;
	font-size: 20px;
	line-height: 1.4;
	text-align: center;
}
.document_imagelist li img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.document-wrapper {	
	color: #CCC;
	padding: 50px 5%;
	background-color: rgba(0,0,0,0.5);
	border-radius: 10px;
	width:90%;
	max-width: 1200px;
	margin:0 auto;
}
.document-btn-wrapper{
	margin: 40px auto 0 auto;
	width: 600px;
}
.document-btn{
	margin: 0 auto;
	width: 600px;
	padding: 25px 0px;
	border: 1px solid #fdd207;
	border-radius: 10px;
	background: #000;
	text-align: center;
}
a:hover .document-btn{
    color: #000;
	background: linear-gradient(-135deg, #f05a21,#f89b1b,#fdd207 );
	transition: all 0.3s ease-in-out 0s;
}
.document-btn span{
	display: inline-block;
	padding-left: 40px;
	color: #fdd207;
	margin: 0 auto;
	font-size: 20px;
	background-image: url("/middleware/enlighten/images/document-icon.svg");
	background-repeat: no-repeat;
	background-size: 21.9px 25px;
	background-position: left center;
}

a:hover .document-btn span{
	color: #000;
	background-image: url("/middleware/enlighten/images/document-icon-on.svg");
}
.document-btn span.youtube{
	background-image: url("/middleware/enlighten/images/youtube-icon.svg");
}
a:hover .document-btn span.youtube{
	background-image: url("/middleware/enlighten/images/youtube-icon-on.svg");
}
a.no-btn .document-btn{
	opacity: 0.7;
}
a.no-btn:hover .document-btn{
	cursor: default;
	background: #000;
}
a.no-btn:hover .document-btn span{
	color: #fdd207;
	background-image: url("/middleware/enlighten/images/document-icon.svg");
}

.movie-wrapper{
	width:90%;
	max-width:1200px;
	margin: 0 auto 120px auto;
}
.movie-wrapper .youtube,
.movie-wrapper .movie .jp_youtube{
	width:48%;
	margin: 0 auto;
}
.movie-wrapper .youtube.youtube_1{
	margin-left:0;
	float:left;
}
.movie-wrapper .youtube.youtube_2{
	float:left;
	margin-left:4%;
}
.movie-wrapper .youtube iframe{
	width:100%;
}
.movie,.movie-wrapper ul{
	margin-bottom: 50px;
}
.movie-wrapper p {
	margin: 15px 0 0 0;
	font-size: 20px;
	line-height: 1.4;
}





@media only screen and (max-width: 750px) {
	.jp section.first {
		padding: 60px 0 0 0;
	}
	#bg_fix{
		background-image: url('../images/bg-sp.jpg');
	}
	h1 {
		width: calc(100% - 10%);
		font-size: 28px;
		padding: 130px 5%;
	}

	.jp_title {
		margin: 0 auto 20px auto;
		font-size: 22px;
	}
	.read_more {
		margin-top: 40px;
	}
	.read_more a span {
		padding: 15px 25%;
		font-size: 18px;
	}

	.document_contents {
		width: calc(100% - 10%);
		margin: 70px 0 0 0;
		padding: 0 5%;
	}

	.document_imagelist {
		display: block;
		width: calc(100% - 10%);
		margin: 30px auto;
		padding: 0 5%;
	}
	.document_imagelist li {
		margin-bottom: 25px;
		font-size: 16px;
	}
	.document_imagelist:last-child,
	.document_imagelist li:last-child {
		margin-bottom: 0;
	}
	.document_imagelist li img {
		margin-bottom: 8px;
	}

	.document-wrapper{
		padding: 30px 5%;
		width: calc(100% - 10%);
	}
	.document-btn-wrapper{
		width: 100%;
		margin-top: 30px;
	}
	.document-btn{
		width: 90%;
		padding: 15px 5%;
		letter-spacing:normal;
	}
	.document-btn span{
		font-size: 18px;
		line-height: 1.6;
	}

	.movie-wrapper {
		width: 100%;
	}
	.movie-wrapper .youtube,
	.movie-wrapper .movie .jp_youtube{
		float:none;
		width:100%;
		margin-left:0;
	}
	.movie-wrapper ul,
	.movie-wrapper .movie {
		margin-bottom:25px;
	}
	.movie-wrapper ul:last-child {
		margin-bottom: 0;
	}
	.movie-wrapper .youtube.youtube_1 {
		margin-bottom:25px;
	}
	.movie-wrapper .youtube.youtube_2 {
		margin-left: 0;
	}
	.movie-wrapper p {
		font-size: 16px;
		line-height: 1.4;
	}
}

@media only screen and (max-width: 600px) {
	.document-btn{
		text-align: left;
	}	
	.document-btn.Tutorials{
		width: 80%;
	}	
	.document-btn span{
		padding-left: 30px;
	}
	.document-wrapper p{
		text-align: left;
	}
}

@media only screen and (max-width: 450px) {
	.document-btn span{
		background-size: 17.5px 20px;
	}
}</pre></body></html>