@charset "UTF-8";
/* CSS Document */
/* header */
header {
	background-color: #fff;
}
header .h_inner .desc .gnav li a {
	color: #000;
}
header .h_inner .desc .gnav li a:after {
	background-color: #000;
}
.is-animation {
	background-color: #fff;
}
.toggle {
	color: #000;
}

/* ttlArea */
.ttlArea {
	margin-top: 110px;
	background-image: url("../img/sub/ttl_bg.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.ttlArea .inner {
	max-width: 1000px;
	height: 400px;
	padding: 0 100px;
	text-align: center;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../img/sub/ttl_img.webp");
}

.ttlArea .inner h1 {
	font-size: 28px;
	color: #fff;
}
/* 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: #003366;
}

.btn {
	width: 220px;
	position: relative;
}
.btn:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 30px;
	height: 1px;
	background-color: #000;
	z-index: 1;
}
.btn:after {
	content: "";
	position: absolute;
	top: 20px;
	right: 0;
	width: 30px;
	height: 1px;
	background-color: #000;
}
.btn02 {
	width: 220px;
	height: 44px;
	position: relative;
	display: block;
	border: 1px solid #000;
	padding: 10px 30px;
	text-align: center;
	transition: ease .2s;
	background: rgba(255,255,255,.8);
}
.btn02 span {
	position: relative;
	z-index: 3;
	color: #000;
}
.btn02:hover span {
	color: #fff;
}
.bgcenterx:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(0,0,0,.8);
	width: 100%;
	height: 100%;
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
}
.bgcenterx:hover:before{
	transform: scale(1, 1);
}



@media screen and (max-width: 1000px) {
/* header */
	header {
		background-color: #fff;
	}
	header .h_inner .gnavArea {
		background-color: #fff;
	}
	
/* ttlArea */
	.ttlArea {
		margin-top: 70px;
	}
	.ttlArea .inner {
		height: 300px;
		justify-content: center;
		padding: 0 2vw;
	}
	.ttlArea .inner h1 {
		font-size: 22px;
	}
/* breadArea */
	.breadArea .inner,
	.breadArea02 .inner {
		padding: 12px 3vw;
	}
}	

@media screen and (max-width: 767px) {
/* ttlArea */
	.ttlArea .inner {
		background-size: cover;
	}
}	

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

@media screen and (max-width: 500px) {
/* ttlArea */
	.ttlArea .inner {
		height: 230px;
	}
}	

@media screen and (max-width: 400px) {
/* ttlArea */
	.ttlArea .inner {
		height: 190px;
	}
}	

