/* CSS Document */
/*キャッチコピー*/
#wccatchcopy{
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom: 0 !important;
}
#wccatchcopy div.wcinner > * {
  padding: 0 !important;
  white-space: inherit !important;
  line-height: 0 !important;
  font-size: 0 !important;
  height: 0  !important;
}
/*文字太*/
.bold{
	font-weight: 600;
}
/*画像*/
figure{
}
figure picture{
	width: 100%;
	height: 100%;
	display: block;
}
figure img{
	width: 100%;
	height: auto;
	object-fit: cover;
}
/*透明*/
.opa{
	width: 0;
	height: 0;
	opacity: 0;
	display: block;
	overflow: hidden;
}
/*余白*/
.m_15{
	margin-top: 1.5rem;
}
.m_05{
	margin-top: 0.5rem;
}
.m_1{
	margin-top: 1rem;
}
/*色変更*/
/*オレンジ*/
.orange{
	color: #ff8e66;
}
.purple{
	color: #9d0051;
}
/*コンテンツタイトル*/
.contents_title{
	display: flex;
	flex-direction: column;
}
body[wc-view-type="tb-l"] .contents_title{
	width: 700px;
	margin: 0 auto;
}
body[wc-view-code="pc"] .contents_title{
	width: 750px;
	margin: 0 auto;
}
.contents_title > h2{
	font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
	transition: opacity 800ms ease,filter 800ms ease;
	opacity: 0;
	filter: blur(20);
}
.contents_title.wcvisible > h2{
	opacity: 1;
	filter: blur(0);
}
body[wc-view-type="sp-s"] .contents_title > h2{
	font-size: 1.4rem;
}
.contents_title > p{
	position: relative;
	z-index: 1;
	transition: opacity 800ms ease,filter 800ms ease;
	opacity: 0;
	filter: blur(20);
}
.contents_title.wcvisible > p{
	opacity: 1;
	filter: blur(0);
}
.contents_title > p::after{
	content: "";
	width: 0;
	height: 1px;
	background: #005B5D;
  background: linear-gradient(90deg,rgba(0, 91, 93, 0) 0%, rgba(0, 91, 93, 0.65) 15%, rgba(0, 91, 93, 1) 50%, rgba(0, 91, 93, 0.65) 85%, rgba(0, 91, 93, 0) 100%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	transition: width 800ms 200ms linear;
}
.contents_title.wcvisible > p::after{
	width: 100%;
}
.contents_title > p .ct_eg{
	color: var(--accentColor);
	font-weight: 400;
	background-color: #fff;
	padding: 0 1rem;
	margin: 0 auto;
  display: table;
	letter-spacing: 1px;
}
.contents_title > p .ct_eg.beige{
	background-color: #faf3eb;
}
.contents_title > p .ct_eg.light_green{
	background-color: #eaf9f9;
}
.contents_title > p .ct_eg.light_green02{
	background-color: #f7fcfc;
}
/*ページタイトル*/
.page_title{
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}
body[wc-view-code="sp"] .page_title{
	height: 175px;
}
body[wc-view-type="tb"] .page_title{
	height: 230px;
}
body[wc-view-type="tb-l"] .page_title{
	height: 230px;
}
body[wc-view-code="pc"] .page_title{
	height: 250px;
}
.page_title > h2{
	font-size: 1.35rem;
  text-align: center;
  position: relative;
  z-index: 5;
  color: #fff;
  display: flex;
  flex-direction: column;
}
body:not([wc-view-code="sp"]) .page_title > h2{
	font-size: 1.75rem;
}
.page_title figure{
	position: absolute;
	inset:0;
	z-index: 1;
}
.page_title figure::before{
	content: "";
	position: absolute;
	inset:0;
	background: #000000;
  background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(4, 69, 67, 0.75) 0%, rgba(10, 186, 181, 0.75) 100%);
	z-index: 2;
}
body[wc-view-code="sp"] .page_title figure img{
	height: 175px;
}
body[wc-view-type="tb"] .page_title figure img{
	height: 230px;
}
body[wc-view-type="tb-l"] .page_title figure img{
	height: 230px;
}
body[wc-view-code="pc"] .page_title figure img{
	height: 250px;
}
/*ボタン*/
.btn{
	width: fit-content;
}
.btn a{
	display: flex;
  background-color: #fff;
  color: var(--accentColor);
  gap: 0.5rem;
  text-decoration: none;
  border: solid 1px var(--accentColor);
  padding: 0.5rem 0.75rem;
  font-size: 1.2rem;
	box-sizing: border-box;
}
body[wc-view-code="sp"] .btn a{
	justify-content: space-between;
}
.btn a::after{
	content: "";
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--accentColor);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-image: url("/shopurl/lilith/recruit_lp/img/svg/arrow.svg");
  mask-image: url("/shopurl/lilith/recruit_lp/img/svg/arrow.svg");
  display: table;
  margin-top: 0.15rem;
}
/*ボタンブロック*/
.btn_block{
	display: flex;
	width: fit-content;
	gap:1rem; 
}
body[wc-view-code="sp"] .btn_block{
	flex-direction: column;
	gap:0.75rem;
}
.btn_block .btn{
}
body[wc-view-code="sp"] .btn_block .btn,
body[wc-view-code="sp"] .btn_block .btn a{
	width: 100%;
}
/*エントリー*/
.entry{
	width: fit-content;
}
.entry a{
	background-color: rgba(255,109,64,0.75);
  border: solid 1px #fff;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entry a span{
	color: #fff;
}
.entry a .e_time{
	font-size: 1rem;
}
.entry a .entry_text{
	font-size: 2rem;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -0.15rem;
}
.entry a .entry_text::after{
	content: "";
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-image: url("/shopurl/lilith/recruit_lp/img/svg/arrow.svg");
  mask-image: url("/shopurl/lilith/recruit_lp/img/svg/arrow.svg");
  display: table;
  margin-top: 0.35rem;
  margin-left: 0.15rem;
}
/*header*/
header#wcheader {
  background-color: transparent !important;
}
header#wcheader div.header {
  height: 0 !important;
  padding: 0 !important;
}
header#wcheader div.headerlogo{
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
header#wcheader .menubtn{
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  color: transparent !important;
  border-radius: inherit !important;
}
/*footer*/
div.footer{
	display: none !important;
}
#wcCopyright{
	margin-left: auto !important;
	margin-right:  auto !important;
}