@charset "utf-8";
/* CSS Document */

/* ------------------------------
メイン画像
------------------------------ */
.mainv_wrap {
	padding: 100px 0;
	background: var(--main-color-light);
}

.mainv_inner {
	padding: 0 15px;
}

.mainv_content {
	text-align: center;
}

.mainv_catch {
	position: relative;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding: 0.3em 1em;
	border-radius: 100px;	
	background: var(--main-color);
	color: #fff;
	font-size: 24px;
}

.mainv_catch::after {
	content: "";
	position: absolute;
	bottom: -14px;
	left: calc(50% - 15px);
	background: var(--main-color);
	width: 30px;
	height: 15px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.mainv_ttl_s {
	margin-top: 2rem;
	font-size: 30px;
}

.mainv_ttl_b {
	margin-top: 0.5rem;
	font-size: 64px;
	line-height: 1.2;
}

.mainv_ttl_b span {
	color: var(--main-color);
}

.mainv_img img {
	display: block;
	width: 100%;
}

.mainv_bottom {
	position: static;
	margin-top: 2rem;
}

.mainv_form_select:after {
	pointer-events: none;
}

.mainv_form_select select {
	border: 1px solid #ccc;
	cursor: pointer;
}

@media (min-width:768px){
	.mainv_inner {
		position: relative;
		width: 1200px;
		margin: 0 auto;
	}

	.mainv_content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.mainv_text,
	.mainv_bottom {
		width: 560px;
	}
	
	.mainv_text {
		padding-bottom: 160px;
	}
	
	.mainv_img {
		flex: 1;
	}
	
	.mainv_bottom {
		position: absolute;
		top: auto;
		left: 15px;
		bottom: 0;
	}
	
	.mainv_form_btn {
		transition: all .3s;
	}
	
	.mainv_form_btn:hover {
		opacity: 0.8;
	}
}

@media screen and (max-width:767px){
	.mainv_wrap {
		padding: 50px 0;
	}
	
	.mainv_catch {
		font-size: 16px;
	}

	.mainv_ttl_s {
		margin-top: 1.5rem;
		font-size: 18px;
	}

	.mainv_ttl_b {
		font-size: 36px;
	}
	
	.mainv_img {
		margin-top: 2rem;
	}
	
	.mainv_bottom {
		margin-top: 2rem;
	}
}

/* ---------------
メイン画像と求人を重ねる
--------------- */
.slider_p2s1 .joblist a {
	background: #fff;
}

@media (min-width:768px){
	.mainv_wrap {
		padding-bottom: 270px;
	}
	
	.home .container {
		margin-top: -172px;
	}
}

@media screen and (max-width:767px){
	.mainv_wrap {
		padding-bottom: 240px;
	}
	
	.home .container {
		margin-top: -212px;
	}
}

/* ------------------------------
アイコン付きの見出し
シンプルな線の見出しに変更
------------------------------ */
.home .title_icon {
	padding-left: 0 !important;
	font-size: 30px;
}

.home .title_icon::before {
	position: static;
	content: "Title";
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 0.3em;
	background: transparent;
	line-height: 1;
	color: #000;
	font-size: 26px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.home .top_job .title_icon::before {
	content: "Job";
}

.home .top_question .title_icon::before {
	content: "Q&A";
}

.home .areamap .title_icon::before {
	content: "Area";
}

.home .point .title_icon::before {
	content: "Point";
}

.home .top_news .title_icon::before {
	content: "Content";
}

@media screen and (max-width:767px){
	.home .title_icon {
		font-size: 20px;
	}
	
	.home .title_icon::before {
		font-size: 18px;
	}	
}








