@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/* Reset
--------------------------------------------------------------*/
html {
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 2;
}
body {
	color: #FFF;
	font-family: "Zen Old Mincho", "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;;
    height: 100%;
}
a {
	color:#000;
	transition: 0.3s;
}
a:link {
	color:#000;
}
a:visited {
	color:#000;
}
a:hover {
	opacity: 0.7;
	transition: 0.3s;
}
::selection {
	background: #FFF;
	color: #0084CF;
}
::-moz-selection {
	background: #FFF;
	color: #0084CF;
}
figure {
	margin-bottom: 0;
	line-height: 1;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	html {
		/*height: 100svh;*/
		background: url(../img/habilis-bg__sp.jpg) no-repeat center/cover;
	}
	body:before {
		background-size: 50%;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	html {
		height: 100vh;
		background: url(../img/habilis-bg__pc.jpg) no-repeat center top/cover;
	}
	body {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 4rem;
	}
	body:before {
		background-size: 25%;
	}
}
@media screen and (min-width:769px) and (max-width:1280px){
	html {
		font-size: 1.16vw;
	}
}
/* Layout
--------------------------------------------------------------*/
.section.bgc {
	background: #FFF;
	margin-top: 0;
	margin-bottom: 0;
}
.section.bg {
	margin-top: 0;
	margin-bottom: 0;
}
.container {
	z-index: 1;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.section {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.section.bgc {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.sp {
		display: none; 
	}
	.container {
		max-width: 85rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.section {
		margin-top: 8rem;
		margin-bottom: 8rem;
	}
	.section.bgc {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}
/* top
--------------------------------------------------------------*/
/* habilisTop-header */
.habilisTop-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* habilisTop-main */
.habilisTop-main .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	text-align: center;
}
.habilisTop-main .commingSoon b {
	display: block;
	font-weight: 600;
    line-height: 1;
	margin-bottom: 2rem;
}
.habilisTop-main .commingSoon h1 {
	font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.habilisTop-main .commingSoon p {
	font-weight: 400;
}
.habilisTop-main .recruitOpen {
	border: 1px solid #FFF;
}
.habilisTop-main .recruitOpen h2 {
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1rem;
}
.habilisTop-main .recruitOpen p {
	margin-bottom: 1rem;
}
.button {
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 26rem;
}
.button a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	display: block;
	background: #231815;
	color: #FFF;
	padding: 0.5rem 3rem 0.5rem 1rem;
	font-size: 1.2rem;
}
.button a:after {
	content: "";
	position: absolute;
	width: 0.7rem;
    height: 0.8rem;
	right: 1rem;
	top: calc(50% - 0.4rem);
	background: url(/assets/img/icon-arrow-right-wht.svg) no-repeat center/contain;
}
/* habilisTop-footer */
.habilisTop-footer .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.habilisTop-header {
		height: 8rem;
	}
	.habilisTop-header .header-logo {
		max-width: 13rem;
	}
	.habilisTop-main .container {
		justify-content: flex-start;
		gap: 2rem;
	}
	.habilisTop-main .commingSoon b {
		font-size: 4rem;
	}
	.habilisTop-main .commingSoon h1 {
		font-size: 1.7rem;
	}
	.habilisTop-main .recruitOpen {
		padding: 2rem 2rem;
		width: calc(100% - 4rem);
	}
	.habilisTop-main .recruitOpen h2 {
		font-size: 1.7rem;
	}
	.habilisTop-footer {
		height: 8rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.habilisTop-header {
		height: 12rem;
	}
	.habilisTop-header .header-logo {
		max-width: 20rem;
	}
	.habilisTop-main .container {
		justify-content: center;
		gap: 4rem;
	}
	.habilisTop-main .commingSoon b {
		font-size: 8rem;
	}
	.habilisTop-main .commingSoon h1 {
		font-size: 2rem;
	}
	.habilisTop-main .commingSoon p {
		font-size: 1.2rem;
	}
	.habilisTop-main .recruitOpen {
		padding: 2rem 4rem;
		min-width: 42rem;
	}
	.habilisTop-main .recruitOpen h2 {
		font-size: 2rem;
	}
	.habilisTop-footer {
		height: 12rem;
	}

}