@charset "UTF-8";
/* CSS Document */
/* ttlArea */
.ttlArea {
	height: 80px;
	background-image: url("../img/sub/ttl_bg.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
  z-index: -1;
}
.ttlArea:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}
.ttlBox {
	margin-top: -80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ttlBox h1 {
	font-size: 23px;
	color: #fff;
	font-weight: 900;
}
/* breadArea */
.breadArea .inner,
.breadArea02 .inner {
	display: flex;
	justify-content: flex-end;
	padding: 12px 20px;
}
.breadArea .inner li,
.breadArea02 .inner li {
	display: flex;
	justify-content: flex-start;
}
.breadArea .inner li:nth-of-type(1),
.breadArea02 .inner li:nth-of-type(1) {
	position: relative;
	padding-right: 26px;
}
.breadArea .inner li:nth-of-type(1):after,
.breadArea02 .inner li:nth-of-type(1):after {
	content: ">";
	position: absolute;
	top: 0;
	right: 0;
}
.breadArea .inner li:nth-of-type(2) {
	padding-left: 16px;
}
.breadArea02 .inner li:nth-of-type(2) {
	padding: 0 16px;
}
.breadArea02 .inner li:nth-of-type(3) {
	position: relative;
	padding-left: 26px;
}
.breadArea02 .inner li:nth-of-type(3):before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}
.breadArea .inner li, 
.breadArea .inner li a,
.breadArea02 .inner li, 
.breadArea02 .inner li a {
	font-size: 13px;
	font-weight: 500;
}
.breadArea .inner li a:hover,
.breadArea02 .inner li a:hover {
	color: #266b6b;
}
/* btn */
.btn02 {
	position: relative;
	display: block;
	width: 250px;
	border: 2px solid #fff;
	background-color: rgba(0,0,0,.5);
	color: #fff;
	font-size: 15px;
	text-align: center;
	padding: 12px 20px 12px 20px;
	transition: ease .2s;
}
.btn02:hover {
	background-color: #fff;
	color: #000;
	border: 2px solid #000;
}
.btnarrow:after {
	position: absolute;
	top: 12px;
	right: 20px;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	content: "\f067";
	font-size: 12px;
	color: #fff;
	transition: all .3s;
}
.btnarrow:hover:after {
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	content: "\f068";
	top: 12px;
	right: 20px;
	color: #000;
}
@media screen and (max-width: 1000px) {
/* ttlArea */
.ttlArea {
	height: 40px;
}
.ttlBox {
	margin-top: -40px;
	height: 40px;
}
.ttlBox h1 {
	font-size: 18px;
}
/* breadArea */
	.breadArea .inner,
	.breadArea02 .inner {
		padding: 12px 3vw;
	}
}	

@media screen and (max-width: 767px) {
}	

@media screen and (max-width: 600px) {
/* ttlArea */
/* breadArea */
	.breadArea,
	.breadArea02 {
		display: none;
	}
}	

