@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Roboto:wght@400;500;600;700;900&display=swap');
/* Zen Kaku Gothic
+ Regular 400
+ Medium 500
+ Bold 700
+ Black 900
*/
/* Roboto
+ Regular 400
+ Medium 500
+ SemiBold 600
+ Bold 700
+ Black 900
*/
/* KeyColor
+ #EDA00C, #FFFAE5(background)
*/
/*--------------------------------
	Common
--------------------------------*/
a {
	transition: .3s !important;
}
img {
    image-rendering: -webkit-optimize-contrast;
}
@media all and (min-width: 1280px) {
	.sp { display: none !important; }
}
@media all and (max-width: 1279px) {
	.pc { display: none !important; }
}
.btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 31.5rem;
	height: 6rem;
	box-sizing: border-box;
	background: #E5AD23;
	box-shadow: 0 0.3rem 1rem 0 rgba(0, 0, 0, 0.12);
	border: 0.1rem solid #E5AD23;
	font-size: 1.6rem;
	font-weight: 700;
	color: #FFF;
}
.btn a:hover {
	background: #FFF;
	color: #E5AD23;
}
.btn a::after {
	position: absolute;
	top: 50%;
	right: 3rem;
	content: "";
	display: inline-block;
	border-top: 0.2rem solid #fff;
	border-right: 0.2rem solid #fff;
	width: 0.4em;
	height: 0.4em;
	transform: translate(0, -50%) rotate(45deg);
}
.btn a:hover:after {
	border-top: 0.2rem solid #E5AD23;
	border-right: 0.2rem solid #E5AD23;
}
.btn-pdf a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 52rem;
	height: 8rem;
	box-sizing: border-box;
	background: #191970;
	border: 0.1rem solid #191970;
	font-size: 1.8rem;
	font-weight: 500;
	color: #FFF;
}
.btn-pdf a:hover {
	background: #FFF;
	color: #191970;
}
.btn-pdf a::after {
	position: absolute;
	top: 2.4rem;
	right: 3rem;
	content: "";
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background: url("/images/common/icon-btnpdf.svg") no-repeat;
	transition: .3s;
}
.btn-pdf a:hover::after {
	filter: brightness(0) saturate(100%) invert(10%) sepia(59%) saturate(4444%) hue-rotate(230deg) brightness(86%) contrast(93%);
}
@media all and (max-width: 1279px) {
	.btn-pdf a {
		width: 100%;
	}
	.btn-pdf a::after {
		right: 1.5rem;
	}
}
#page-title {
	position: relative;
	overflow: hidden;
}
#page-title:before {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	content: "";
	display: inline-block;
	width: 140rem;
	height: 20rem;
	margin: 0 auto;
	background: url("/images/common/bg-pagetitle.webp") no-repeat;
	background-size: cover;
}
#page-title h1 {
	height: 20rem;
	padding: 5.5rem 0 6rem;
	box-sizing: border-box;
	text-align: center;
}
#page-title h1 span {
	display: block;
	color: #FFF;
	line-height: 1;
}
#page-title h1 span.en {
	margin: 0 0 2rem;
	font-family: 'Roboto', sans-serif;
	font-size: 5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
#page-title h1 span.jp {
	font-size: 1.6rem;
	font-weight: 500;
}
#page-title .breadcrumbs {
	position: relative;
	padding: 2rem 0 8.2rem;
	background: #191970;
}
#page-title .breadcrumbs::before {
	position: absolute;
	z-index: -2;
	top: -8rem;
	left: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 8rem;
	background: #191970;
}
#page-title .breadcrumbs ul {
	display: flex;
	gap: 0 2.4rem;
	max-width: 140rem;
	padding: 0 0 0 10rem;
	margin: 0 auto;
}
#page-title .breadcrumbs ul li {
	font-size: 1.2rem;
	color: #FFF;
}
#page-title .breadcrumbs ul li a {
	position: relative;
	font-size: 1.2rem;
	font-weight: 700;
	color: #FFF;
}
#page-title .breadcrumbs ul li a::before {
	position: absolute;
	top: 0.5rem;
	right: -1.5rem;
	content: "";
	display: inline-block;
	width: 0.5rem;
	height: 1rem;
	background: url("/images/common/icon-breadcrumbs.svg") no-repeat;
}
@media all and (max-width: 1279px) {
	#page-title .breadcrumbs ul {
		padding: 0 0 0 2rem;
	}
	#page-title .breadcrumbs {
		padding: 2rem 0 2rem;;
	}
}
/*--------------------------------
	Page Top
--------------------------------*/
.page-top {
	display: none;
	position: fixed;
	z-index: 2;
 	bottom: 8.5rem;
	right: 2rem;
}
.page-top a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	background: #E5AD23;
}
.page-top a:hover {
	opacity: 0.8;
}
@media all and (max-width: 1279px) {
	.page-top {
		bottom: 1.5rem;
		right: 1.5rem;
	}
	.page-top a {
		display: none;
	}
}
/*--------------------------------
	etc
--------------------------------*/
@media all and (min-width: 1280px) {
	a[href*="tel:"] {
		pointer-events: none;
	}
}