@charset "utf-8";
/* CSS Document */


/* main_view
   ========================================================================== */
.main_view{
	margin: 0 0 0;
	display: flex;
}

.main_view .big,
.main_view .small{
	width: 50%;
	height: 600px;
}

.main_view a{
	display: block;
	position: relative;
	height: 100%;
	transition: .3s;
}

.main_view a:hover{
	opacity: .7;
}

.main_view .box{
	padding: 20px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.4);
	box-sizing: border-box;
	width: 100%;
	height: 110px;
}

.main_view .big .box{
	padding: 22px;
}

.main_view .box .title,
.main_view .box .text{
	color: #fff;
	line-height: 150%;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.main_view .small .box .text{
	-webkit-line-clamp: 2;
}

.main_view .small{
	font-size: 0;
}

.main_view .small li{
	padding-left: 5px;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	width: 50%;
}

.main_view .small li:nth-child(3),
.main_view .small li:nth-child(4){
	margin-top: 5px;
}

.main_view .small li a{
	display: block;
	height: 297.5px;
}

.main_view .big .title{
	font-size: 20px;
}

.main_view .big .text{
	font-size: 24px;
}

.main_view .small .title{
	font-size: 14px;
}

.main_view .small .text{
	margin-top: 5px;
	font-size: 16px;
}


/* tag */
a.tag::after{
	min-width: 70px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
}

a.event::after{
	content: "イベント";
	background: #e4007f;
}

a.news::after{
	content: "ニュース";
	background: #3596b4;
}

a.column::after{
	content: "コラム";
	background: #00a288;
}


/* news_block
   ========================================================================== */
.news_block{
	margin: 1px 0 0;
	background: #dfdfdf;
}

.news_block .inner{
	display: flex;
}

.news_block h2{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 50px;
	line-height: 0;
	background: #00a288;
}

.news_block ul{
	width: 1110px;
}

.news_block ul li a{
	padding: 10px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	height: 50px;
}

.news_block ul li a .date{
	display: inline-block;
	font-size: 14px;
	position: relative;
}

.news_block ul li a .date::after{
	content: "-";
	margin: 0 15px;
	
}

.news_block ul li a .text{
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	color: #00a288;
}

.news_block ul li a:hover .text{
	text-decoration: underline;
}


/* banner_block
   ========================================================================== */
.banner_block{
	margin: 1px 0 0;
}

.banner_block .inner{
	padding: 40px 0;
}

.banner_block ul{
	font-size: 0;
	text-align: center;
}

.banner_block ul li{
	margin: 10px 10px;
	line-height: 0;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	width: auto;
}

.banner_block ul li a{
	line-height: 0;
	display: block;
}


/* feature
   ========================================================================== */
.feature{
	margin: 10px 0 0;
	background: #c5dcd8;
}

.feature .inner{
	padding: 0 0 50px;
}

.feature .block_title{
	margin: auto;
	padding: 14px 0 0;
	width: 260px;
	height: 90px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 0 0 10px 10px;
}

.feature .block_title .jpn{
	margin: 5px 0 0;
}

.feature ul{
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.feature ul::before{
	content: "";
	background: #fff;
	width: 500px;
	height: 1px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0 ;
	right: 0;
}

.feature ul li{
	width: 320px;
	display: flex;
	border-radius: 10px;
	border: 1px solid #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
	background: #fff;
}

.feature ul li:last-child{
	width: 240px;
	height: 50px;
}

.feature ul li:nth-child(2){
	margin: 0 30px;
}

.feature ul li h3{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #00a288;
	font-size: 16px;
	color: #fff;
	font-weight: normal;
	width: 105px;
	height: 60px;
}

.feature ul li select{
	padding: 15px;
	width: 215px;
	height: 100%;
	box-sizing: border-box;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: .3s;
}

.feature ul li select:hover{
	opacity: .6;
}

.feature ul li select option{
	background: #3f726a;
	color: #fff;
}

.feature ul li:nth-child(3) .box{
	width: 100%;
	height: 100%;
}

.feature ul li button{
	padding: 15px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-size: 16px;
	color: #fff;
	background: #e4007f;
	border: none;
	cursor: pointer;
	transition: .3s;
}

.feature ul li button:hover{
	opacity: .6;
}


/* pickup
   ========================================================================== */
.pickup{
	margin: 10px 0 0;
}

.pickup .inner{
	padding: 0 0 50px;
}


/* list
   ========================================================================== */
.list{
	margin: 37px 0 0;
	font-size: 0;
	text-align: center;
}

.list li{
	margin: 0 0 0;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	width: 32.2%;
	text-align: left;
	background: #fff;
}

.list.pickup_list li:nth-child(2){
	margin: 0 1.7%;
}

.list li a{
	display: block;
	border: 1px solid #eaeaea;
	position: relative;
	transition: .3s;
}

.list li a:hover{
	border: 1px solid #e8e8e8;
}

.list li a .photo{
	display: block;
	line-height: 0;
	transition: .3s;
	height: 240px;
}

.list li a:hover .photo{
	opacity: .5;
}

.list li a .logo{
	padding: 0 20px;
	box-sizing: border-box;
	display: table-cell;
	justify-content: center;
	align-content: center;
	background: rgba(255,255,255,.8);
	position: absolute;
	top: 0;
	left: 0;
	height: 50px;
	max-width: 100%;
	line-height: 50px;
	transition: .3s;
}

.list li a:hover .logo{
	opacity: .7;
}

.list li a .logo img{
	vertical-align: middle;
	max-height: 80%;
}

.list li a .text_box{
	padding: 20px 20px 40px;
	display: block;
	border-top: 1px solid #eaeaea;
	transition: .3s;
}

.list li a:hover .text_box{
	background: #f9f9f9;
	border-top: 1px solid #e8e8e8;
}

.list li a .text_box .text{
	display: block;
	font-size: 16px;
	font-weight: bold;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 48px;
}


/* more
   ========================================================================== */
.more{
	display: block;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.more span{
	padding: 0 0 7px;
	display: block;
	font-size: 14px;
	color: #00a288;
	font-weight: bold;
	position: relative;
	transition: .3s;
}

.more span::after{
	content: "";
	background: #00a288;
	width: 20px;
	height: 3px;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: .3s;
}

a:hover .more span{
	color: #e4007f;
}

a:hover .more span::after{
	background: #e4007f;
}


/* newjob
   ========================================================================== */
.newjob{
	margin: 10px 0 0;
}

.newjob .inner{
	padding: 0 0 50px;
}

.newjob .anime_btn{
	margin: 50px 0 0;
}

.list.jpb_list{
	margin: 17px 0 0;
	text-align: left;
}

.list.jpb_list li{
	margin-top: 20px;
	margin-left: 1.7%;
	width: 23.72%;
}

.list.jpb_list li:nth-child(4n+1){
	margin-left: 0;
}

.list.jpb_list li .photo{
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	display: inline-table;
	text-align: center;
	line-height: 100px;
}

.list.jpb_list li .photo img{
	vertical-align: middle;
	max-width: 90%;
}

.list.jpb_list li .text_box .text{
	font-size: 15px;
	color: #00a288;
	min-height: 48px;
}

.list.jpb_list li .text_box .title{
	margin: 10px 0 0;
	font-size: 15px;
	font-weight: bold;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.list.jpb_list li .text_box .description{
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	min-height: 57px;
}

.list.jpb_list li .text_box .recruit{
	margin: 15px 0 0;
	padding: 15px 0 0;
	border-top: 1px solid #ddd;
	font-size: 12px;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}


/* sumuspick
   ========================================================================== */
.sumuspick{
	margin: 10px 0 0;
}

.sumuspick .inner{
	padding: 0 0 50px;
}

.sumuspick .anime_btn{
	margin: 50px 0 0;
}

.list.sumus_list li{
	margin-left: 1.7%;
	width: 23.72%;
}

.list.sumus_list li:nth-child(4n+1){
	margin-left: 0;
}

.list.sumus_list li .photo{
	width: 100%;
	height: 160px;
	box-sizing: border-box;
	display: block;
	text-align: center;
	line-height: 0;
}

.list.sumus_list li .text_box{
	padding: 20px;
}

.list.sumus_list li .text_box .text{
	font-size: 16px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	min-height: 72px;
}

.list.sumus_list li .text_box .title{
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: normal;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.list.sumus_list li a::after{
	transition: .3s;
}

.list.sumus_list li a:hover::after{
	opacity: .7;
}


/* tags
   ========================================================================== */
.tags{
	margin: 10px 0 0;
}

.tags .inner{
	padding: 0 0 50px;
}

.tags .tags_box{
	margin: 50px 0 0;
	padding: 17px 15px 20px 25px;
	background: #fff;
	box-sizing: border-box;
	border-radius: 8px;
}

.tags .tags_box ul{
	font-size: 0;
}

.tags .tags_box ul li{
	margin: 8px 15px 0 0;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	width: auto;
}

.tags .tags_box ul li a{
	padding: 3px 0 2px 32px;
	background: url("../images/tags/tag_icon.png") no-repeat left top;
	display: inline-block;
	font-size: 16px;
	color: #00a288;
	transition: .3s;
}

.tags .tags_box ul li a:hover{
	opacity: .7;
}


/* btn_block
   ========================================================================== */
.btn_block{
	margin: 10px 0 0;
}

.btn_block .inner{
	padding: 40px 0;
}

.btn_block ul{
	display: flex;
	justify-content: center;
}

.btn_block ul li{
	width: 400px;
}

.btn_block ul li:nth-child(2){
	margin-left: 40px;
}

.btn_block ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 160px;
	box-sizing: border-box;
	background: #00a288;
	border-radius: 8px;
}

.btn_block ul li:nth-child(2) a{
	background: #4687a5;
}

.btn_block ul li a .icon{
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
}

.btn_block ul li a .text{
	margin-left: 6px;
	display: inline-block;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
}

