@charset "utf-8";

/*
	page-commons.css
---------------------------------------------------------------------------------------------------------------------------------------------*/
/* main-visual
--------------------------------------------------------------------------------------------------------*/
.page-contents #main-visual {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}
.page-contents #main-visual .inner {
	color: #fff;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 34.0rem;
	position: relative;
}
.page-contents #main-visual .inner .main-title {
	text-align: center;
}
.page-contents #main-visual .inner .main-title h2 {
	font-size: 5.4rem;
	letter-spacing: 0.1em;
}
.page-contents #main-visual .inner .main-title p {
	margin-top: 0.4em;
	font-size: 1.8rem;
	letter-spacing: 0.12em;
}
.page-contents #main-visual .inner .breadcrumb {
	position: absolute;
	bottom: 1.0em;
	left: 50%;
	width: 1000px;
	height: auto;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	display: flex;
	display: -webkit-flex;
	font-size: 1.2rem;
}
.page-contents #main-visual .inner .breadcrumb li {
	position: relative;
}
.page-contents #main-visual .inner .breadcrumb li:not(:last-child) {
	margin-right: 2.0em;
}
.page-contents #main-visual .inner .breadcrumb li:not(:last-child)::after {
	content: '\f105';
	position: absolute;
	top: 50%;
	right: -1.0em;
	font-family: FontAwesome;
	font-size: 1.5rem;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
}
.page-contents #main-visual .inner .breadcrumb li a {
	display: block;
	color: #fff;
}

/* common parts
--------------------------------------------------------------------------------------------------------*/
/* bg-g
----------------------------------------------------*/
.page-contents section.bg-g {
	background-color: #f4f4f4;
}

/* content-title
----------------------------------------------------*/
.page-contents .inner .content-title {
	text-align: center;
}
.page-contents .inner .content-title h4 {
	font-size: 3.8rem;
	letter-spacing: 0.02em;
}
.page-contents .inner .content-title p {
	margin-top: 1.0rem;
	letter-spacing: 0.15em;
}

/*
	less than 767px;
---------------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {

/* main-visual
--------------------------------------------------------------------------------------------------------*/
	.page-contents #main-visual .inner {
		height: calc(340 / 750 * 100vw);
	}
	.page-contents #main-visual .inner .main-title h2 {
		font-size: calc(63 / 750 * 100vw);
	}
	.page-contents #main-visual .inner .main-title p {
		font-size: calc(24 / 750 * 100vw);
	}
	.page-contents #main-visual .inner .breadcrumb {
		bottom: 1.0em;
		left: 0;
		width: 100%;
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		font-size: calc(22 / 750 * 100vw);
		padding: 0 calc(25 / 750 * 100vw);
	}
	.page-contents #main-visual .inner .breadcrumb li:not(:last-child)::after {
		right: -1.25em;
		font-size: calc(21 / 750 * 100vw);
	}

/* common parts
--------------------------------------------------------------------------------------------------------*/
/* content-title
----------------------------------------------------*/
	.page-contents .inner .content-title h4 {
		font-size: calc(48 / 750 * 100vw);
	}
	.page-contents .inner .content-title p {
		font-size: calc(28 / 750 * 100vw);
		margin-top: 0.5em;
	}


/*
	page-commons.css End
---------------------------------------------------------------------------------------------------------------------------------------------*/
}