@charset "UTF-8";
/* --------------------------------------------------
 * utility
** -------------------------------------------------- */

/* toggle
** ------------------------- */
@media screen and (min-width: 1023px) {
	.u-hide_desktop {
		display: none !important;
	}
	.u-show_media {
		display: none !important;
	}
}

/* inner
** ------------------------- */
.u-inner {
	width: 100%;
	max-width: calc(960px + 20px * 2);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* lead
** ------------------------- */
.u-lead {
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
}

/* transition
** ------------------------- */
.u-transition {
	transition: all .35s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* scrollon
** ------------------------- */
.u-scrollon {
	opacity: 0;
	transition: all .35s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateY(30px);
}
.u-scrollon--type_reverse {
	transform: translateY(-30px);
}
.u-scrollon.is-scrollon_active {
	opacity: 1;
	transform: translateY(0px);
}


/* --------------------------------------------------
 * component
** -------------------------------------------------- */

/* section
** ------------------------- */
.l-section {
	display: block;
	margin-top: 100px;
}
.l-section:first-child {
	margin-top: 0;
}
.l-section > * {
	margin-top: 50px;
}
.l-section > *:first-child {
	margin-top: 0;
}
.l-section_title {
	display: block;
	padding-left: 15px;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.5;
	border-left: 5px solid #D9D9D9;
}
.l-section_lead {
	display: block;
	margin-left: 30px;
	margin-right: 30px;
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 2;
	text-align: justify;
}
.l-section_figure {
	display: block;
	text-align: center;
}
.l-section_figure img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.l-section {
		margin-top: 60px;
	}
	.l-section > * {
		margin-top: 30px;
	}
	.l-section_title {
		font-size: 22px;
	}
	.l-section_lead {
		margin-left: 0;
		margin-right: 0;
		font-size: 14px;
	}
	.l-section_figure {
		margin-left: -30px;
		margin-right: -30px;
	}
}
