@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
/*=======================================================
基本設定
=======================================================*/
:root {
	--pink: #EEAE9B;
	--blue: #84D3ED;
	--bg_blue: rgba(132, 211, 237, 0.15);
	--bg_pink: rgba(238, 174, 155, 0.15);
	--black: #374653;
	--gray: #999999;
	--translucent: rgba(255,255,255,.9);
}
html {
	font-size: 16px;
}
body {
	background: #fff;
	color: var(--black); 
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	letter-spacing: 0.1em;
	line-height: 1;
	margin: auto;
	max-width: 1920px;
}
main {
	padding-top: 70px;
	flex: 1;
	font-size: 14px;
}
a,
a:hover {
	transition: .5s;
}
a:hover {
	opacity: .5;
}
p {
	line-height: 25px;
	letter-spacing: 0.1em;
}
p + p {
	margin-top: 25px;
}
/*--------------------------------------------------
ヘルプタグ
--------------------------------------------------*/
/*Outfit*/
.hp_outfit {
	font-family: 'Outfit', sans-serif;
}
/*Lato*/
.hp_lato {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*ブレンド*/
.hp_blend {
	 background: linear-gradient(90deg, #84D3ED 0%, #EEAE9B 100%)!important;
}
/*水色とピンク*/
.learn .hp_color {
	background: var(--blue);
}
.works .hp_color {
	background: var(--pink);
}
.learn .hp_color_font {
	color: var(--blue);
}
.works .hp_color_font {
	color: var(--pink);
}
.hp_color__pink {
	background: var(--pink)!important;
}
.hp_color__blue {
	background: var(--blue)!important;
}
.hp_color__black {
	background: var(--black)!important;
}
/*シャドウ*/
.hp_shadow {
	box-shadow: 0px 0px 10px 0px #0000001A;
}
/*3点リーダ*/
.hp_trimming {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hp_trimming__1 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 1;
}
.hp_trimming__2 {
	-webkit-line-clamp: 2;
}
.hp_trimming__3 {
	-webkit-line-clamp: 3;
}
.hp_trimming__4 {
	-webkit-line-clamp: 4;
}
.hp_trimming__5 {
	-webkit-line-clamp: 5;
}
/*横線あり見出し*/
.hp_mark {
	display: flex;
	align-items: center;
}
.hp_mark::before {
	content: "";
  display: block;
  width: 25px;
  height: 5px;
  background: var(--blue);
  border-radius: 5px;
  margin-right: 20px;
}
.hp_mark__pink::before {
  background: var(--pink);
}
/*--------------------------------------------------
ボタン
--------------------------------------------------*/
.el_btn {
	position: relative; 
	z-index: 3;
	margin: auto;
	display: flex; 
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 50px;
	width: 200px;
	height: 50px;
}
.el_btn::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	display: block;
	transform: rotate(45deg);
	position: absolute; 
	top: 22px;
	right: 31px;
}
.el_btn_more {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
	font-size: 16px;
	margin-top: 30px;
	padding-right: 15px;
	justify-content: center;
	padding-top: 1px;
}
.el_btn.white {
	border: 1px solid var(--black);
	color: var(--black);
}
.el_btn.white::after {
	border-right: 1px solid var(--black);
	border-top: 1px solid var(--black);
}
.el_btn_return {
	border: 1px solid var(--pink);
	color: var(--pink);
	font-size: 16px;
	font-weight: 700;
	padding-left: 19px;
}
.el_btn_return::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--pink);
	border-top: 1px solid var(--pink);
	display: block;
	transform: rotate(225deg);
	position: absolute;
	top: 21px;
	right: initial;
	left: 30px;
}
/*--------------------------------------------------
ラベル
--------------------------------------------------*/
.el_label {
	border-radius: 30px;
  font-weight: 700;
  font-style: normal;
	display: inline-block;
	font-size: 10px; 
	height: 21px;
	padding: 4px 10px 0;
	line-height: 1;
  min-width: 63px;
  text-align: center;
	letter-spacing: 0;
	flex-shrink: 0;
}
.learn .el_label {
	color: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 5px;
	padding: 4px 4px 0;
	margin-bottom: 2px;
}
.works .el_label {
	color: var(--pink);
	border: 1px solid var(--pink);
	background: #fff;
}
.el_label_cat {
	background: var(--black);
	color: #fff;
	border-radius: 5px;
	padding: 7px 7px 6px 9px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
	font-size: 14px;
	margin-right: 8px;
	letter-spacing: 0.1em;
}
.learn .el_label_cat {
	background: var(--blue);
}
.works .el_label_cat {
	background: var(--pink);
}
/*--------------------------------------------------
ページトップボタン
--------------------------------------------------*/
#bl_pagetop {
	text-align: center;
	position: fixed;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex; 
	align-items: center;
	justify-content: center;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	background: #fff;
	box-shadow: 0px 0px 10px 0px #0000001A;
	z-index: 998;
}
#bl_pagetop::after {
	content: "";
	width: 15px;
	height: 15px;
	border-right: 2px solid var(--black);
	border-top: 2px solid var(--black);
	display: block;
	transform: rotate(315deg);
	position: absolute; 
	top: 25px;
	right: 0;
	left: 0;
	margin: auto;
}
/*--------------------------------------------------
ヘッダー
--------------------------------------------------*/
.ly_head {
	width: 100%;
	background: var(--translucent);
	position: fixed;
	top: 0;
	left: 0;
	height: 70px;
	z-index: 999;
	display: flex;
	align-items: center;
}
.ly_head_inner {
	margin: auto;
	position: relative;
	width: 1920px;
	display: flex; 
	justify-content: space-between;
	align-items: center;
	padding-left: 30px;
	height: 100%;
}
/***ロゴ***/
.bl_headLogo {
	font-size: 22px;
	font-family: 'Outfit', sans-serif;
	letter-spacing: 0.08em;
	font-weight: 500;
	line-height: 1;
}
.bl_headLogo span {
	display: block;
	font-size: 10px;	
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
/***ナビ***/
.bl_head_gloNav {
	height: 100%;
}
.bl_head_gloNav_inner {
	display: flex; 
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}
.bl_head_gloNav_item {
	height: 100%;
}
.bl_head_gloNav_item a {
	display: flex; 
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	font-weight: 600;
	color: #374653;
	height: 100%;
	margin: 0 25px;
}
/*動画で学ぶ*/
.bl_head_gloNav_item.learn a {
	background: var(--blue);
	color: #fff;
	width: 140px;
	margin: 0 0 0 25px;
	padding-top: 20px;
}
.bl_head_gloNav_item.learn a::before {
	content: "";
	display: block;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_learn.svg) center / contain no-repeat;
	width: 22px;
	height: 20px;
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	margin: auto;
}
/*求人を探す*/
.bl_head_gloNav_item.works a {
	background: var(--pink);
	color: #fff;
	width: 140px;	
	margin: 0;
	padding-top: 20px;
}
.bl_head_gloNav_item.works a::before {
	content: "";
	display: block;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_works.svg) center / contain no-repeat;
	width: 23px;
	height: 22px;
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	margin: auto;
}
.bl_burgerBtn {
	display: none;
}
.bl_head_gloNav_sp {
	display: none;
}
/*--------------------------------------------------
フッター
--------------------------------------------------*/
.ly_foot_inner {
	margin: auto;
	position: relative;
	padding: 55px 10px 20px;
	width: 100%;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/footer_bg.jpg) top center / cover no-repeat;
}
/***動画で学ぶ・求人を探す***/
.bl_footBtn {
	display: flex;
	justify-content: space-between;
	height: 100px;
}
.bl_footBtn li {
	width: 50%;
}
.bl_footBtn li a {
	display: flex; 
	align-items: center; 
	justify-content: center;
	height: 100%;
	width: 100%;
	color: #fff;
	font-size: 20px; 
	font-weight: 600;
}
.bl_footBtn li.el_learn a {
	background: var(--blue);
}
.bl_footBtn li.el_works a {
	background: var(--pink);
}
.bl_footBtn li a::before {
	content: "";
	display: inline-block;
	margin-right: 25px;
}
.bl_footBtn li.el_learn a::before {
	width: 30px;
	height: 28px;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_learn.svg) center / contain no-repeat;
}
.bl_footBtn li.el_works a::before {
	width: 30px;
	height: 30px;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_works.svg) center / contain no-repeat;
}
/*フッターロゴ*/
.bl_footLogo {
	color: #fff;
	font-size: 30px;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
}
.bl_footLogo span {
	display: block;
	font-size: 14px;
	font-family: 'Noto Sans JP';
	font-weight: 400;
	margin-bottom: 15px;
}
/***フッターナビ***/
.bl_footNav {
	display: flex; 
	align-items: center; 
	justify-content: center;
	margin: 40px 0 34px;
}
.bl_footNavItem {
	font-size: 14px;
	color: #fff;	
	margin: 0 20px;
}
/*コピーライト*/
small {
	text-align: center;
	display: block;
	font-size: 10px;
	color: #fff;
}
/*--------------------------------------------------
コンテンツ
--------------------------------------------------*/
.ly_cont_inner {
	margin: auto;
	position: relative;
	padding: 0 10px;
	max-width: 1220px;
}
.ly_cont__main {
	max-width: 892px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 150px;
}
/**1カラムの時のinner**/
.ly_post_inner {
	max-width: 616px;
	margin: auto;
}
/**2カラム**/
.ly_cont__col {
	position: relative;
	display: flex; 
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 160px;
}
/*メイン*/
.ly_cont__col .ly_cont__main {
	flex: 1;
	margin-left: 3%;
	margin-right: 0;
	margin-bottom: 0;
}
/*サイド*/
.ly_cont__col .ly_cont__side {
	flex: 0 0 250px;
}
/*--------------------------------------------------
見出し
--------------------------------------------------*/
/*ヘッダー大見出し*/
.ly_lv1Wrapper {
	width: 100%;
	margin: auto;
	height: 250px;
	position: relative;
	margin-bottom: 100px;
	margin-top: 70px;
}
.ly_lv1Wrapper_inner {
	width: 52.1%;
	height: 100%;
	background: var(--blue);
	border-radius: 0 20px 20px 0;
	display: flex;
	align-items: center;
	color: #fff;
	padding-left: 16.5%;
}
.works .ly_lv1Wrapper_inner {
	background: var(--pink);
}
.ly_lv1Wrapper_inner .el_lv1Header {
	font-size: 20px;
	font-weight: 700;
	display: block;
}
.ly_lv1Wrapper_inner .el_lv1Header .el_en {
	font-size: 60px;
	font-weight: 700;
  font-family: "Lato", sans-serif;
	margin-bottom: 15px;
	display: block;
}
/*ヘッダー画像*/
.ly_lv1Wrapper::before {
	content: "";
	width: 57%;
	height: 250px;
	top: -70px;
	right: 0;
	display: block;
	border-radius: 20px 0 0 20px;
	position: absolute;
}
#learn .ly_lv1Wrapper::before {
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_learn.png) center / cover no-repeat;
}
#works .ly_lv1Wrapper::before {
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_works.png) center / cover no-repeat;
}
#feature .ly_lv1Wrapper::before {
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_feature.png) center / cover no-repeat;
}
#news .ly_lv1Wrapper::before {
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_news.png) center / cover no-repeat;
}
.lower .ly_lv1Wrapper_inner {
	width: 69.45%;
}
#privacy-policy .ly_lv1Wrapper_inner,
#company .ly_lv1Wrapper_inner,
#terms .ly_lv1Wrapper_inner,
#faq .ly_lv1Wrapper_inner {
	background: var(--gray);
}
#entry .ly_lv1Wrapper_inner,
#check .ly_lv1Wrapper_inner,
#thanks .ly_lv1Wrapper_inner {
	background: var(--pink);
}
/*大見出し*/
.el_lv1Header {
	font-size: 20px;
	font-weight: 700;
	display: block;
}
/*中見出し*/
.el_lv2Header {
	font-size: 20px;
	font-weight: 700;
	position: relative;
	border-bottom: 1px solid var(--gray);
	padding-bottom: 25px;
	margin-bottom: 50px;
	line-height: 1.75
}
/*--------------------------------------------------
お知らせ
--------------------------------------------------*/
.bl_vertPosts {
	margin-bottom: 40px;
}
.bl_vertPosts_item {
	padding: 0 0 20px;
	border-bottom: 1px solid var(--gray);
}
.bl_vertPosts_item + .bl_vertPosts_item {
	margin-top: 20px;
}
.bl_vertPosts_header {
	margin-bottom: 8px;
	display: flex; 
	align-items: center;
}
.bl_vertPosts_cat {
	color: #fff;
	border-radius: 5px;
	padding: 7px 5px 6px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	background: var(--black);
	font-size: 14px;
	margin-right: 15px;
	width: 67px;
	text-align: center;
}
.bl_vertPosts_cat_works {
	color: #fff;
	border-radius: 5px;
	padding: 7px 5px 6px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	background: var(--pink);
	font-size: 14px;
	margin-right: 15px;
	width: 67px;
	text-align: center;
}
.bl_vertPosts_cat_learn {
	color: #fff;
	border-radius: 5px;
	padding: 7px 5px 6px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	background: var(--blue);
	font-size: 14px;
	margin-right: 15px;
	width: 67px;
	text-align: center;
}
.works .bl_vertPosts_cat {
	background: var(--pink);
}
.learn .bl_vertPosts_cat {
	background: var(--blue);
}
.bl_vertPosts_date {
	font-size: 16px;
	color: var(--gray);
}
.bl_vertPosts_ttl {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.875;
	position: relative;
	letter-spacing: 0.08em;
}
/*--------------------------------------------------
共通カード（Learn優先）
--------------------------------------------------*/
.bl_cardUnit {
	display: flex; 
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.bl_card {
	box-shadow: 0px 0px 10px 0px #0000001A;
	background: #fff; 
	border-radius: 10px;
}
.bl_card_imgWrapper {
	flex-shrink: 0;
	margin-bottom: 15px;
	height: auto;
}
.bl_card_imgWrapper img {
	object-fit: cover;
	width: 100%;
	height: 131px;
	border-radius: 10px 10px 0 0;
}
.bl_card_header {
	text-align: center;
	margin-bottom: 10px;
	/*padding: 0 5px;*/
}
.learn .bl_card_header {
	overflow: hidden;
	height: 22px;
	padding: 0 10px;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--blue);
}
.bl_card_header_cat {
	display: flex; 
	align-items: center; 
	justify-content: flex-start;
}
.bl_card_body {
	overflow: hidden;
}
.bl_card_ttl {
	font-weight: 700;
	line-height: 1.5625;
	padding: 0 10px 0 12px;
}
.bl_card_sub_ttl {
	color: var(--gray);
	font-size: 14px;
	line-height: 1.425;
	letter-spacing: 0.05em;
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 0 10px 0 12px;
}
.bl_card_detail {
	padding: 0 13px;
	height: 81px;
}
.bl_card_detail li {
	font-size: 12px;
	background: var(--bg_blue);
	color: var(--blue);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.05em;
  text-align: center;
	border-radius: 5px; 
	padding: 5px 0;
	height: 25px;
	letter-spacing: 0;
}
.bl_card_detail li + li {
	margin-top: 3px;
}
.bl_card .el_btn {
	margin-top: 20px;
}
/*Learn*/
.bl_learnUnit .bl_card {
	padding: 0 0 30px;
	max-width: 276px;
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	position: relative;
}
.bl_learnUnit .bl_card:nth-of-type(3n) {
	margin-right: 0;
}
/*newが付く場合 is-showを付与する*/
.bl_card.is-new::before {
	content: "新着動画";
	width: 80px;
	height: 30px;
	background: var(--blue);
	font-size: 14px;
	color: #fff;
	position: absolute; 
	top: 10px;
	left: 10px;
	display: flex; 
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	font-weight: 700;
}
.works .bl_card.is-new .bl_card_imgArea {
	position: relative;
}
.works .bl_card.is-new .bl_card_imgArea::before {
	content: "新着求人";
	background: var(--pink);
	width: 100px;
	height: 30px;
	font-size: 14px;
	color: #fff;
	display: flex; 
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	font-weight: 700;
	margin-bottom: 15px;
}
/*--------------------------------------------------
Worksカード
--------------------------------------------------*/
.bl_worksUnit .bl_card {
	border-radius: 20px;
	padding: 40px;
	background: var(--bg_pink);
}
.bl_worksUnit .bl_card a {
	display: flex;
}
.bl_worksUnit .bl_card_body {
	padding: 0;
}
.bl_worksUnit .bl_card_imgWrapper {
	width: 250px;
	height: 245px;
	margin-right: 30px;
	border-radius: 10px;
	margin-bottom: 0;
	flex-shrink: 1;
}
.bl_worksUnit .bl_card_imgWrapper img {
	height: 200px;
	border-radius: 10px;
}
.bl_worksUnit .bl_card_header {
	margin-bottom: 0;
}
.bl_worksUnit .bl_card_header .el_label {
	margin-right: 10px;
	letter-spacing: 0.3em;
	height: 18px;
	padding-top: 3px;
}
.bl_worksUnit .bl_card_header .bl_card_header_cont {
	display: flex;
	margin-bottom: 2px;
}
.bl_worksUnit .bl_card_header .bl_card_header_cont div {
	text-align: left;
	color: var(--pink);
}
.bl_worksUnit .bl_card_header .bl_card_header_cont dd {
	font-size: 12px;
	color: var(--pink);
	letter-spacing: 0.05em;
	font-weight: 700;
	margin-right: 5px;
	margin-bottom: 3px;
	display: inline;
}
.bl_worksUnit .bl_card_header .bl_card_header_cont dd:last-of-type {
	margin-right: 0;
}
.bl_worksUnit .bl_card_ttl {
	padding: 0;
}
.bl_worksUnit .bl_card_sub_ttl {
	line-height: 1.785;
	letter-spacing: 0.09em;
	margin-top: 5px;
	padding: 0;
	margin-bottom: 10px;
}
.bl_worksUnit .bl_card_detail {
	margin-top: 12px;
	padding: 0;
	height: auto;
}
.bl_worksUnit .bl_card_detail li {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	background: none;
	color: var(--black);
	text-align: left;
	padding: 0 0 0 30px;
	position: relative;
	font-weight: 400;
	height: auto;
}
.bl_worksUnit .bl_card_detail li + li {
	margin-top: 5px;
}
.bl_worksUnit .bl_card_detail li::before {
	content: "";
	display: block;
	position: absolute; 
	left: 0;
}
.bl_worksUnit .bl_card_detail li.access::before {
	width: 14px;
	height: 20px;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_access.svg) center / contain no-repeat;
	left: 2px;
  top: 50%;
  transform: translateY(-50%); 
}
.bl_worksUnit .bl_card_detail li.salary::before {
	width: 18px;
	height: 18px;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_en.svg) center / contain no-repeat;
  top: 50%;
  transform: translateY(-50%); 
}
.bl_worksUnit .bl_card_detail li.status::before {
	width: 18px;
	height: 17px;
	background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/icon_bag.svg) center / contain no-repeat;
  top: 50%;
  transform: translateY(-50%); 
}
/*--------------------------------------------------
詳細ページのページネーション
--------------------------------------------------*/
.bl_pagenationUnit {
	margin: 70px auto auto;
	max-width: 616px;
}
.bl_pagenationUnit ul {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.bl_pagenationUnit .prev {
	padding-right: 0;
	padding-left: 15px;
}
.bl_pagenationUnit .prev::after {
	transform: rotate(225deg);
	right: initial;
	left: 31px;
}
/*--------------------------------------------------
フォーム部品
--------------------------------------------------*/
input,label,textarea {
	cursor: pointer;
}
input[type="search"],
input[type="text"],
input[type="email"] ,
input[type="tel"]  {
	width: 100%;
	height: 31px;
	border-radius: 20px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4) inset;
	border: none;	
	padding: 0 70px 0 10px;
  background: linear-gradient(270deg, var(--black) 0%, var(--black) 70px, #fff 70px, #fff 100%);
}
/*チェックボックス*/
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	flex-shrink: 0;
  position: relative;
  width: 19px;
  height: 19px;
  border: 1px solid var(--gray);
  vertical-align: -5px;
	border-radius: 50px;
	margin-right: 13px;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
	background: var(--black);
  border: 1px solid var(--black);
}
input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
	flex-shrink: 0;
}
/*--------------------------------------------------
Learn用 1080px～751px
--------------------------------------------------*/
@media screen and (max-width : 1080px) {
	.bl_learnUnit {
		justify-content: space-between;
	}
	.bl_learnUnit .bl_card {
		max-width: 375px;
		width: 48%;
	}
	.bl_learnUnit .bl_card {
		margin-right: 0;
	}
}
/*--------------------------------------------------
タブレット用 820px
--------------------------------------------------*/
@media screen and (max-width : 820px) {
	.ly_lv1Wrapper_inner {
		padding-left: 6.5%;
	}
}
/*--------------------------------------------------
タブレット用 820px
--------------------------------------------------*/
@media screen and (max-width : 600px) {
	input[type="search"],
	input[type="text"] ,
	input[type="email"],
	input[type="tel"]{
		height: 41px;
	}
}
/*--------------------------------------------------
スマホ用 750px～430px
--------------------------------------------------*/
@media screen and (max-width : 750px) {
	main {
		font-size: 16px;
	}
	p {
		line-height: 30px;
	}
	p + p {
		margin-top: 30px;
	}
	.ly_cont_inner {
		padding-left: 30px; 
		padding-right: 30px;
	}
	/***ヘッダー***/
	.ly_head_inner {
		padding-left: 15px;
	}
	/*ロゴ*/
	.bl_headLogo span {
		font-size: 12px;
	}
	/*spヘッダー*/
	.bl_head_gloNav_sp {
		display: block;
	}
	.bl_head_gloNav_sp_inner {
		display: flex; 
		align-items: center; 
		height: 70px;
	}
	.bl_head_gloNav_sp_inner .bl_head_gloNav_item {
		height: 100%;
	}
	.bl_head_gloNav_sp_inner .bl_head_gloNav_item a {
    width: 80px;
		font-size: 12px;
		padding: 35px 0 0;
		justify-content: center;
	}
	.bl_head_gloNav_sp_inner .bl_head_gloNav_item.learn a {
		margin-left: 0;
	}
	.bl_head_gloNav_sp_inner .bl_head_gloNav_item.learn a::before {
    width: 30px;
    height: 27px;
	}
	.bl_head_gloNav_sp_inner .bl_head_gloNav_item.works a::before {
		width: 30px;
		height: 29px;
	}
	/*ハンバーガー*/
	.bl_burgerBtn {
		display: block;
		width: 70px;
		height: 70px;
		position: relative;
		z-index: 4;
		border: none;
		cursor: pointer;
		background: var(--black);
		}
	.bar {      
		width: 28px;
		height: 3px;
		display: block;
		position: absolute;
		left: 22px;
		background-color: #fff;
		transition: transform .3s
	}	
	.bar_top {   
		top: 23px;
	}
	.bar_mid {    
		top: 35px;
	}
	.bar_bottom {
		top: 47px;
	}
	.bl_burgerBtn.close .bar_top {      
    top: 27px;
    transform: translateY(6px) rotate(-45deg);
	}    
	.bl_burgerBtn.close .bar_mid {
		opacity: 0;
		transition: opacity .3s;
	}    
	.bl_burgerBtn.close .bar_bottom {
    top: 39px;
    transform: translateY(-6px) rotate(45deg);
	}
	/**ナビの中**/
	.bl_head_gloNav {
		display: none;
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 4;
	}     
	.bl_head_gloNav_inner{
		width: 100%;
		height: 100%;
		background: #fff;
		z-index: 2;
		display: block;
		overflow: scroll;
		padding-top: 58px;
		padding-left: 85px;
	}
	.bl_head_gloNav_item {
		height: auto;
	}
	.bl_head_gloNav_item > a {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		font-size: 20px;
		color: var(--black);
		padding: 22px 0;
		margin: 0;
		font-weight: 700;
	}
	.bl_head_gloNav_item > a::before {
		content: "";
		display: inline-block;
		background: var(--gray);
		width: 25px;
		height: 5px;
		border-radius: 5px;
		margin-right: 15px;
	}
	/*プラポリなど*/
	.bl_head_gloNav_item_sub {
		margin-top: 20px;
	}
	.bl_head_gloNav_item_sub li a {
		margin: 0;
		padding: 17px 0;
		justify-content: flex-start;
		font-size: 14px; 
		font-weight: 400;
	}
	/***フッター***/
	.ly_foot_inner {
    padding: 75px 0 20px;
    background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/common/footer_bg_sp.jpg) top center / cover no-repeat;
	}
	.bl_footLogo {
		font-size: 40px;
		margin-bottom: 65px;
	}
	.bl_footLogo span {
		margin-bottom: 20px;
	}
	.bl_footNav {
		flex-wrap: wrap;
		margin-bottom: 40px;
		padding: 0 50px;
	}
	.bl_footNavItem {
		font-size: 16px;
		margin-bottom: 25px;
	}
	small {
		font-size: 12px;
	}
	/***3点リーダ***/
	.hp_trimming__1_sp {
		-webkit-line-clamp: 1;
		white-space: initial;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.hp_trimming__2_sp {
		-webkit-line-clamp: 2;
		white-space: initial;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.hp_trimming__3_sp {
		-webkit-line-clamp: 3;
		white-space: initial;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.hp_trimming__4_sp {
		-webkit-line-clamp: 4;
		white-space: initial;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.hp_trimming__5_sp {
		-webkit-line-clamp: 5;
		white-space: initial;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.ly_cont__col {
		margin-bottom: 100px;
	}
	.ly_cont__main {
		margin-left: 0;
	}
	.ly_cont__col .ly_cont__main {
		margin-left: 0;
	}
	/***見出し***/
	.ly_lv1Wrapper {
    height: 300px;
		margin-top: 120px;
		margin-bottom: 65px;
	}
	.ly_lv1Wrapper::before {
    height: 250px;
		width: 93.2%;
	}
	.ly_lv1Wrapper_inner {
		width: 93.2%;
		align-items: flex-end;
		padding-bottom: 15px;
	}
	.ly_lv1Wrapper_inner .el_lv1Header {
		display: flex;
		align-items: center;
		font-size: 16px;
	}
	.ly_lv1Wrapper_inner .el_lv1Header .el_en {
		margin-right: 15px;
		margin-bottom: 25px;
	}
	#learn .ly_lv1Wrapper::before {
		background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_learn_sp.png) center / cover no-repeat;
	}
	#works .ly_lv1Wrapper::before {
		background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_works_sp.png) center / cover no-repeat;
	}
	#news .ly_lv1Wrapper::before {
		background: url(https://learn-work-prod.s3.ap-northeast-1.amazonaws.com/images/service/lower/header_img_news.png) center / cover no-repeat;
	}
	.lower .ly_lv1Wrapper_inner {
		align-items: center;
		width: 92.58%;
		padding-bottom: 0;
	}
	.lower .ly_lv1Wrapper_inner .el_lv1Header {
		display: block;
	}
	/***カード***/
	.bl_card_sub_ttl {
		margin-bottom: 20px;
	}
	.bl_card_imgWrapper {
		height: 110px;
	}
	.bl_card_imgWrapper img {
		height: 110px;
	}
	.bl_card_detail li {
		font-size: min(3vw,12px);
	}
	.learn .bl_card_header {
		height: 25px;
	}
	/***ラベル***/
	.el_label {
		padding-top: 4px;
	}
	/***サイド***/
	.ly_cont__side {
		display: none;
	}
	/***ページネーション***/
	.bl_pagenationUnit .el_btn_more {
		width: 33vw;
	}
	.bl_pagenationUnit .prev::after {
    left: 18px;
	}
	.bl_pagenationUnit .next::after {
    right: 18px;
	}
	/***お知らせ***/
	.bl_vertPosts_header {
		margin-bottom: 3px;
		flex-wrap: wrap;
	}
	.bl_vertPosts_header > * {
		margin-bottom: 5px;
	}
	/***works***/
	.works .bl_card.is-new .bl_card_imgArea::before {
		position: absolute;
		top: 10px;
		left: 10px;
		margin-bottom: 0;
		z-index: 2;
	}
}
/*--------------------------------------------------
Learn用 600px
--------------------------------------------------*/
@media screen and (max-width : 600px) {
	.bl_learnUnit {
		display: block;
	}
	.bl_learnUnit .bl_card {
		max-width: 100%;
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.bl_learnUnit .bl_card_imgWrapper {
		height: 200px;
	}
	.bl_learnUnit .bl_card_imgWrapper img {
		height: 200px;
	}
	.bl_learnUnit .bl_card_ttl,
	.bl_learnUnit .bl_card_sub_ttl,
	.bl_learnUnit .bl_card_detail {
		padding: 0 20px;
		height: auto;
	}
}
/*--------------------------------------------------
スマホ用 429px～
--------------------------------------------------*/
@media screen and (max-width : 429px) {
	.bl_headLogo {
		font-size: 4.3vw;
	}
	.bl_headLogo span {
		font-size: 2vw;
	}	
	.bl_footBtn li a {
		font-size: 5.3vw;
	}
	.bl_footBtn li a::before {
		margin-right: 3vw;
	}
	.el_lv1Header .el_en {
		font-size: 50px;
	}
}

.bl_card_small_imgWrapper {
	flex-shrink: 0;
	margin-bottom: 15px;
}

.bl_card_small_imgWrapper img {
	object-fit: cover;
	width: 100%;
	object-position: 0% 0%;
	border-radius: 10px 10px 0 0;
	height: 131px;
}

.bl_workUnit_label {
	font-size: 12px;
	color: var(--pink);
	letter-spacing: 0.05em;
	font-weight: 700;
	margin-right: 5px;
	margin-bottom: 3px;
	display: inline;
}

.bl_job_name:last-of-type {
	margin-right: 0;
}

.bl_worksUnit .bl_card_header .bl_card_header_cont span:last-of-type {
	margin-right: 0;
}

.ellipses
{
	white-space: nowrap;
	line-height: 2;
	margin-bottom: 8px;
}

.paging_disabled {
	pointer-events: none;
}

.hover_black:hover{
	color: #374653
}
.hover_white:hover {
	color: #fff
}
.hover_pink:hover{
	color: pink;
}