@charset "UTF-8";

/* ---------- ---------- ---------- 
	:: index ::

01. Heading

---------- ---------- ---------- */


/* ---------- ---------- ---------- 
:: for large screen ::
@media only screen and (min-width: 1025px) {
}
:: for medium screen ::
@media only screen and (min-width: 641px) and (max-width: 1024px) {
}
:: for small screen ::
@media only screen and (max-width: 640px) {
}
---------- ---------- ---------- */


/* 01. Heading
---------- ---------- ---------- */
/* 01-1. Heading Lv1 : category top
---------- ---------- */
/* text position */
@media only screen and (min-width: 1025px) {
	.corp-cat-headingLv1-top__pageTitle .l-PageTitle__titleBlock__titleBox {
		top: 45%;
		left: 6%;
	}
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
	.corp-cat-headingLv1-top__pageTitle .l-PageTitle__titleBlock__titleBox {
		top: 40%;
    	left: 8%;
	}
}
@media only screen and (max-width: 640px) {
	.corp-cat-headingLv1-top__pageTitle .l-PageTitle__titleBlock__titleBox {
		top: 44%;
		left: 0%;
	}
}
