@charset "UTF-8";
/* CSS Document */
/* header */
header {
	background-color: #fff;
}
/* ttlArea */
.ttlArea .inner {
	padding: 80px 40px 0;
}
.ttlArea .inner .h1Area {
	width: 50%;
}
.ttlArea .inner h1,
.ttlArea .inner .h1Area h1 {
	font-family: bilo, sans-serif;
	letter-spacing: 0.16em;
	font-weight: 700;
	font-size: 28px;
}
.ttlArea .inner h2 {
	margin-top: 10px;
	font-family: bilo, sans-serif;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-size: 20px;
	color: #e9545d;
	padding-left: 50px;
	position: relative;
	&::before {
		content: "";
		position: absolute;
		top: calc(50% - 1px);
		left: 0;
		width: 30px;
		height: 1px;
		background-color: #000;
	}
}

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

@media screen and (max-width: 768px) {
	.ttlArea .inner {
    padding: 60px 6vw 0;
		h1 {
			font-size: clamp(1.125rem, 0.89rem + 1.18vw, 1.625rem);
		}
		h2 {
			font-size: clamp(0.938rem, 0.849rem + 0.44vw, 1.125rem);
		}
	}
}
.ttlArea .inner .h1Area h1 {
	font-size: clamp(1.125rem, 0.89rem + 1.18vw, 1.625rem);
}

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

