@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.my-font01 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base_color01 {
  /*--メイン文字カラー--*/
  color: #1a0004;
}
.point_color01 {
  /*--ポイント文字カラー ブルー --*/
  color: #50a1d8;
}
.point_color02 {
  /*--ポイント文字カラー 水色 --*/
  color: #2fbbdc;
}
.point_back01 {
  /*--ポイント背景カラー 緑味ブルー --*/
  background: #106487;
}
.point_back02 {
  /*--ポイント背景カラー ブルー--*/
  background: #50a1d8;
}
.point_back03 {
  /*--ポイント背景カラー 薄ブルー--*/
  background: #e5f4fe;
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
/* 無料相談ボタン */
.btn01 {
	display: inline-block;
    text-align: center;
    min-width: 320px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 8px;
    padding: 25px 0;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 768px) {
  .btn01 {
    width: 100%;
    min-width: inherit;
    font-size: 16px;
    padding: 20px 0;
  }
}

/* 青枠ボタン */
.btn02 {
    text-align: center;
	font-size: 18px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #50a1d8;
	border-radius: 8px;
    padding: 22px 0 21px;
    width: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn02::after {
	content: "";
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 2px #50a1d8;
	border-right: solid 2px #50a1d8;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	right: 1.0em;
}
.btn02.point_color01:hover {
    color: #fff;
    background: #50a1d8;
    opacity: 1;
}
.btn02.point_color01:hover::after {
    border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
@media screen and (max-width: 768px) {
  .btn02 {
	font-size: 16px;
    width: 80%;
	padding: 15px 0;
  }
  .btn02::after {
	width: 8px;
	height: 8px;
  }
}


/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .mywidth {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .mywidth {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main_wrapp {
  overflow-x: hidden;
}

/* title */
.content_title01 {
	padding: 20px 0;
	margin-bottom: 3em;
}
.content_title01 h3 {
  color: #1a0004;
  font-size: 26px;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.content_title01 h3::before {
  content: attr(data-text) "";
  font-size: 18px;
  color: #106487;
  font-weight: bold;
  line-height: 1.8em;
  font-family: "Roboto", sans-serif;
}

.content_title02 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    background: #50a1d8;
    padding: 0.5em 0.5em;
	margin-bottom: 20px;
}

/* text */
.text {
	font-size: 16px;
	line-height: 1.8em;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.sp_link { pointer-events: none; }

@media screen and (max-width: 768px) {
	.content_title01 {
		padding: 10px 0;
		margin-bottom: 2em;
	}
	.content_title01 h3 {
		font-size: 20px;
	}
	.content_title01 h3::before {
		font-size: 14px;
	}
	
	.content_title02 {
	  font-size: 18px;
	  padding: 0.3em 0.5em;
	  margin: 15px 0;
	}
	
	/* text */
	.text {
		font-size: 14px;
		line-height: 1.7em;
	}
	
	.sp_link { pointer-events: auto; }
}






/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/

/*  main_v  */
#main_v {
  height: 582px;
  background: url("../images/mv_back.png") no-repeat;
  position: relative;
  background-position: center;
}
#main_v .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#main_v .logo {
    width: 55%;
    max-width: 555px;
}
#main_v .main_title {
    font-size: 36px;
    line-height: 1.4em;
    margin: 20px 0;
}
#main_v .main_title_text {
    font-size: 18px;
    font-weight: 300;
}
#main_v .btn01 {
    min-width: 500px;
}
@media screen and (max-width: 768px) {
  #main_v {
    height: auto;
	background: #fff;
  }
  #main_v .inner {
	padding: 2em 2.5vw;
    background: url(../images/mv_back_sp.png) no-repeat center;
	background-size: cover;
  }
  #main_v .logo { width: 60%; }
  #main_v .main_title {
    font-size: 20px;
    line-height: 1.6em;
    margin: 15px 0;
	text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.8), 1px 0px 4px rgba(255, 255, 255, 0.8), 0px 1px 4px rgba(255, 255, 255, 0.8);
  }
  #main_v .main_title_text {
    font-size: 14px;
    line-height: 1.4em;
	text-shadow: -1px -1px 2px rgba(255, 255, 255, 0.9), -1px 2px 2px rgba(255, 255, 255, 0.9), -1px 1px 2px rgba(255, 255, 255, 0.9);
  }
	
  .sp_btn_wrap {
    width: 100%;
    padding: 1em;
  }
  #main_v .btn01 { min-width: inherit; }
	
}



/*  content01  */
.content01 { padding-bottom: 5em; }
.content01 .l_outer,
.content01 .r_outer { width: 48.5%; }

/* エリアから探す */
.content01 .search_area {
	width: 100%;
	max-width: 607px;
	height: calc(491px + 50px);
	background: url(../images/map.png) no-repeat top center / contain;
	position: relative;
}
.content01 .search_area ul {
    width: 100%;
    height: 100%;
    position: relative;
}
.content01 .search_area li {
  border-radius: 8px;
  position: absolute;
  transform: translateY(-50%);
}
.content01 .search_area .area01 {
  background: #afc8e9;
  top: 41%;
  right: 5%;
}
.content01 .search_area .area02 {
  background: #f8c6b4;
  top: 41%;
  left: 33%;
}
.content01 .search_area .area03 {
  background: #cbe2a3;
  bottom: 27%;
  right: 13%;
}
.content01 .search_area .area04 {
  background: #a2bee3;
  bottom: 15%;
  left: 45%;
}
.content01 .search_area .area05 {
  background: #d1bad9;
  top: 53%;
  left: 20%;
}
.content01 .search_area .area06 {
  background: #f3d282;
  bottom: 7%;
  left: 23%;
}
.content01 .search_area .area07 {
  background: #daaac0;
  bottom: 0;
  left: 0;
}
.content01 .search_area a {
  min-width: 120px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  padding: 10px;
  display: inline-block;
}
@media screen and (max-width: 1280px) {
	.content01 {
		padding-bottom: 3em;
	}
	.content01 .search_area {
		height: 38vw;
	}
	.content01 .search_area a {
		font-size: 14px;
		min-width: 90px;
		padding: 0.5em 0.5em;
	}
}
@media screen and (max-width: 1080px) {
	
	.content01 .search_area a {
        font-size: 13px;
        min-width: 70px;
        padding: 0.5em 0.5em;
    }
}
@media screen and (max-width: 768px) {
  .content01 { padding-bottom: 3em; }
  .content01 .l_outer,
  .content01 .r_outer { 
	  width: 100%;
	  height: auto;
  }
  .content01 .search_area {
    width: 100%;
    height: auto;
    margin: 0 0;
    background: none;
  }
  .content01 .search_area li {
    position: static;
    margin-top: 10px;
    margin-left: 10px;
    width: calc((100% - 10px) / 2);
	transform: inherit;
  }
  .content01 .search_area li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .content01 .search_area li:nth-child(2n + 1) {
    margin-left: 0;
  }
  .content01 .search_area a {
	font-size: 13px;
	padding: 10px 0;
	display: block;
  }
}

/* 新着求人 */
#newArrival {}
#newArrival .item {}
#newArrival .item + .item {
    margin-top: 5px;
}
#newArrival .item a {
    font-size: 15px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
#newArrival .item a:hover {
    opacity: 1;
    text-decoration: underline;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 768px) {
	#newArrival .item + .item {
	  margin-top: 10px;
	}
	#newArrival .item a {
		font-size: 13px;
	}
}


/* 職種から探す */
.content01 .search_job {
	gap: 8px 3%;
}
.content01 .search_job li {
  width: 31.33%;
}
.content01 .search_job li a {
  font-size: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.content01 .search_job li a:hover {
    opacity: 1;
    text-decoration: underline;
}
.content01 .search_job li a::before {
	content: "";
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #50a1d8;
	border-right: solid 2px #50a1d8;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-right: 0.5em;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 768px) {
	.content01 .search_job {
	  gap: 10px 2%;
	}
	.content01 .search_job li { width: 49%; }
	.content01 .search_job li a {
	  font-size: 3.5vw;
	}
}

/* その他条件から探す */
.search_kodawari {}
.search_kodawari .title {
    color: #50a1d8;
    font-size: 18px;
	font-weight: bold;
    letter-spacing: 0.05em;
    margin-top: 15px;
    margin-bottom: 10px;
}
.search_kodawari .list { gap: 10px 0; }
.search_kodawari li {
    width: calc((100% - 30px) /4);
    margin-right: 10px;
}
.search_kodawari li:nth-child(4n) { margin-right: 0; }
.search_kodawari li a {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #1a0004;
    padding: 12px 0;
    border-radius: 8px;
    display: block;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 768px) {
	.search_kodawari .title {
		font-size: 15px;
	}
	.search_kodawari li {
		width: calc((100% - 10px) /2);
	}
	.search_kodawari li:nth-child(4n) { margin-right: 10px; }
	.search_kodawari li:nth-child(2n) { margin-right: 0; }
	.search_kodawari li a {
		font-size: 3.5vw;
		padding: 8px 0;
	}
}



/*  content02  */
.content02 {}
.recommend_list {
    padding-bottom: 3em;
}
.recommend_list a {
    width: calc((100% - 10%) / 3);
    max-width: 380px;
    margin-right: 5%;
    display: block;
}
.recommend_list a:nth-child(3n) {
    margin-right: 0;
}
.slider_recommend {
	margin-bottom: 3em;
}
.slider_recommend a img {
	margin: auto;
	width: 90%;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 768px) {
	.recommend_list {
		padding-bottom: 2em;
	}
	.recommend_list a {
		width: 100%;
		height: 40vw;
		margin: 0 5vw;
	}
	.recommend_list a:nth-child(3n) { margin: 0 5vw; }
	.recommend_list a img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.slider_recommend {
		margin-bottom: 2em;
	}
}


.home .slick-prev,
.home .slick-next {
    width: 25px;
    height: 50px;
}
.home .slick-prev:before,
.home .slick-next:before {
    width: 25px;
    height: 50px;
}
@media screen and (max-width: 768px) {
	.home .slick-prev,
	.home .slick-next {
		width: 20px;
		height: 20px;
	}
	.home .slick-prev { left: -5px; }
	.home .slick-next { right: -5px; }
	.home .slick-prev:before,
	.home .slick-next:before {
		width: 20px;
		height: 20px;
	}
}



/*  content03  */
.content03 {
	padding-bottom: 3em;
}
.kyujin_item { margin: 0 15px; }
.kyujin_item a { display: block; }
.kyujin_item figure {
    margin-bottom: 10px;
}
.kyujin_item figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.kyujin_item figure .tag {
    font-size: 14px;
    font-feature-settings: "palt";
    letter-spacing: 0.08em;
    padding: 3px 1em;
    position: absolute;
    top: 0;
    left: 0;
}
.kyujin_item .title {
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
}
.kyujin_item .subtitle {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}
@media screen and (max-width: 1280px) {
	.kyujin_item figure img {
		height: 15vw;
	}
}
@media screen and (max-width: 1080px) {
	.kyujin_item figure img {
		height: 15vw;
	}
	
}
@media screen and (max-width: 768px) {
	.content03 {
		padding-bottom: 2em;
	}
	.kyujin_item {
		margin: 0 10px;
	}
	.kyujin_item figure img { height: 33vw; }
	.kyujin_item figure .tag {
		font-size: 11px;
		padding: 3px 0.75em;
	}
	.kyujin_item .title { font-size: 13px; }
	.kyujin_item .subtitle { font-size: 12px; }

}



/*  content04  */
.content04 {
	padding-bottom: 3em;
}
@media screen and (max-width: 768px) {
	.content04 {
	  padding-bottom: 2em;
	}
}



/*  content05  */
.content05 { padding: 5em 0; }

.content05 {}
.content05 .title_wrap {
	
}
.content05 .title_wrap figure {
    width: 100%;
    max-width: 561px;
    margin: 0 0;
}
.content05 .title_wrap .title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 50px;
}
@media screen and (max-width: 768px) {
	.content05 { padding: 2.5em 0; }
	
	.content05 .title_wrap figure { width: 70%; }
	.content05 .title_wrap .title {
		font-size: 18px;
		margin: 10px 0 30px;
	}
}

.strength_item {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.strength_item.item2 {
	flex-direction: row-reverse;
}
.strength_item .inner {
    width: calc(100% - (640px + 50px));
}
.strength_item figure { width: 640px; }

.strength_item .title_wrap {
	margin-top: 98px;
	margin-bottom: 30px;
    position: relative;
}
.strength_item .title_wrap h4 {
    font-size: 24px;
	color: #fff;
    line-height: 1.8em;
    padding: 3px 0.5em;
	background: #50a1d8;
}
.strength_item .title_wrap::before {
	content: "";
	display: inline-block;
	height: 98px;
	position: absolute;
	top: -95px;
	left: 0
}
.strength_item.item1 .title_wrap::before {
	width: 45px;
	background: url(../images/strength_no1.png) no-repeat;
	background-size: contain;
}
.strength_item.item2 .title_wrap::before {
	width: 68px;
	background: url(../images/strength_no2.png) no-repeat;
	background-size: contain;
}
.strength_item.item3 .title_wrap::before {
	width: 60px;
	background: url(../images/strength_no3.png) no-repeat;
	background-size: contain;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	.content05 .title_wrap figure { width: 50%; }
	.content05 .title_wrap .title {
		font-size: 20px;
		margin: 10px 0 30px;
	}
	
	.strength_item:last-of-type {
		margin-bottom: 0;
	}
	.strength_item .inner {
		width: calc(100% - (50% + 30px));
	}
	
	.strength_item .title_wrap {
		margin-top: 7vw;
		margin-bottom: 15px;
	}
	.strength_item .title_wrap::before {
		height: 7vw;
		top: -6.5vw;
	}
	.strength_item .title_wrap h4 {
		font-size: 18px;
	}
	
	.strength_item figure { width: 50%; }
}
@media screen and (max-width: 768px) {
	.strength_item {
		margin-bottom: 30px;
	}
	.strength_item,
	.strength_item.item2 {
		flex-direction: column-reverse;
	}
	.strength_item .inner,
	.strength_item figure { width: 100%; }
	
	.strength_item .title_wrap {
		margin-top: 10px;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.strength_item .title_wrap h4 { font-size: 3.75vw; }
	.strength_item .title_wrap::before {
		height: 8vw;
		position: static;
	}
	.strength_item.item1 .title_wrap::before,
	.strength_item.item2 .title_wrap::before,
	.strength_item.item3 .title_wrap::before {
		width: 8vw;
	}
	
}


/*  content06  */
.content06 { padding: 0 0; }
#bnr_list {}
#bnr_list .item {
    width: 33.33%;
    height: 260px;
}
#bnr_list .item.bnr_search {
	background: url(../images/bnr_search.png) no-repeat;
	background-size: cover;
}
#bnr_list .item.bnr_reason {
	background: url(../images/bnr_reason.png) no-repeat;
	background-size: cover;
}
#bnr_list .item.bnr_flow {
	background: url(../images/bnr_flow.png) no-repeat;
	background-size: cover;
}
#bnr_list .item.bnr_faq {
	background: url(../images/bnr_faq.png) no-repeat;
	background-size: cover;
}
#bnr_list .item.bnr_outline {
	background: url(../images/bnr_outline.png) no-repeat;
	background-size: cover;
}
#bnr_list .item.bnr_column {
	background: url(../images/bnr_column.png) no-repeat;
	background-size: cover;
}
#bnr_list .inner {
	padding: 0.5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
#bnr_list .item .title_en {
    color: #538fa8;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2em;
}
#bnr_list .item .title {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
#bnr_list .item .title::after {
    content: "";
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 0.25em;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	#bnr_list .item {
		width: calc(100% / 3);
		height: 25vw;
	}
	#bnr_list .inner { justify-content: flex-end; }
	#bnr_list .item .title_en {
		font-size: 3vw;
		position: absolute;
		left: 0.25em;
	}
	#bnr_list .item .title {
		font-size: 1.75vw;
		white-space: nowrap;
	}
	#bnr_list .item .title::after {
		width: 8px;
		height: 8px;
	}
}
@media screen and (max-width: 768px) {
	.content06 {}
	
	#bnr_list .item {
		width: 50%;
		height: 30vw;
	}
	#bnr_list .inner {
		padding: 0.25em 0.5em;
		flex-direction: column;
	}
	#bnr_list .item .title_en {
		font-size: 3.5vw;
	}
	#bnr_list .item .title {
		font-size: 4.0vw;
	}
	#bnr_list .item .title::after {
		width: 6px;
		height: 6px;
	}
}

/*  content06  */
.content07 {
	padding-bottom: 3.5em;
}
.content07 .news_list li {
  margin: 15px 0;
  display: flex;
  align-items: center;
}
.content07 .news_list li .date,
.content07 .news_list li a { font-size: 16px; }

.content07 .news_list li .date {
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-right: 2em;
}
.content07 .news_list li a { color: #1a0004; }
@media screen and (max-width: 768px) {
  .content07 {
  padding-bottom: 2.5em;
  }
  .content07 .news_list {
    margin-bottom: 30px;
  }
  .content07 .news_list li {
    margin: 10px 0;
    border-bottom: 2px dotted #106487;
	flex-direction: column;
	align-items: flex-start;
  }
  .content07 .news_list li .date,
  .content07 .news_list li a {
	display: inline-block;
    font-size: 14px;
  }
  .content07 .news_list li a {
    padding-bottom: 5px;
  }
}

/*  content08  */
.content08 {
  padding: 5em 0;
  background: url(../images/role_back.png) no-repeat;
  background-size: cover;
  background-position: center;
}
#role {}
#role .inner { width: 50%; }
#role .role_title {
    font-size: 30px;
    line-height: 1.6em;
    margin: 10px 0 0;
}
#role .text {
    line-height: 2.0em;
}

#role .btn_wrap {
    width: 100%;
    margin-top: 50px;
}
#role .btn_wrap .btn_phone {
	font-size: 16px;
    margin-right: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#role .btn_wrap .btn_phone span {
    font-size: 46px;
    font-family: "Poppins", sans-serif;
    line-height: 1.0em;
}

#role .btn_wrap .phone {
    width: fit-content;
    max-width: 380px;
    margin-right: 2em;
    gap: 0 1.0em;
}
#role .btn_wrap .phone a {
    width: calc((100% - 1.0em) / 2);
}
#role .btn_wrap .phone a > p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 5px;
}
#role .btn_wrap .phone a > div {
    font-size: 26px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    line-height: 1.0em;
    letter-spacing: -0.5px;
}
#role .btn_wrap .phone .note {
    width: 100%;
    font-size: 15px;
    text-align: center;
    margin-top: 5px;
}

#role .btn_wrap .btn {
    width: 330px;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#role .btn_wrap .btn::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../images/i_register.png) no-repeat;
    background-size: contain;
    margin-right: 0.5em;
}
@media screen and (max-width: 1280px) {
	
}
@media screen and (max-width: 1080px) {
	.content08 {
		padding: 0 0;
		background: url(../images/role_back.png) no-repeat;
		background-size: cover;
		background-position: center right 45%;
	}
	.content08 > .mywidth {
		padding: 3em 2vw;
		background: rgba(255, 255, 255, 0.6);
	}
	#role .inner { width: 58%; }
	#role .btn_wrap {
		margin-top: 30px;
	}
}
@media screen and (max-width: 768px) {
  .content08 {
    padding: 2.5em 0;
	          background-position: left center;
  }
	#role .role_logo { width: 70%; }
	
	#role .inner { width: 100%; }
	#role .role_title { font-size: 20px; }
	
	#role .btn_wrap {
		margin-top: 20px;
	}
	#role .btn_wrap .btn_phone {
		font-size: 12px;
		width: 80%;
		padding: 5px 0;
		background: #fff;
		border: 1px solid #106487;
		border-radius: 8px;
		margin-right: 0;
	}
	#role .btn_wrap .btn_phone span { font-size: 8.0vw; }
	
	#role .btn_wrap .phone {
		width: 100%;
		max-width: inherit;
		margin: 0 0;
	}
	#role .btn_wrap .phone a {
		padding: 0.25em 0.25em;
		text-align: center;
		border: 2px solid #106487;
		background: #fff;
		border-radius: 8px;
	}
	#role .btn_wrap .phone a > p {
		font-size: 3.5vw;
	}
	#role .btn_wrap .phone a > div {
		font-size: 4.25vw;
		display: flex;
        justify-content: center;
        align-items: center;
	}
	#role .btn_wrap .phone a > div::before {
		content: "";
		display: inline-block;
		width: 4.0vw;
		height: 4.0vw;
		background: url(../images/i_phone.png) no-repeat;
		background-size: contain;
		margin-right: 0.5em;
	}
	
	#role .btn_wrap .btn {
		width: 80%;
		font-size: 18px;
		padding: 15px 0;
		margin-top: 20px;
	}
	
  
}


.btn_del {
  display: inline-block;
  background-color: #fb5757;
  width: auto;
  height: auto;
  padding: 7px 8px;
  border-radius: 5px;
  color: #fff;
  line-height: 1;

}
.btn_add {
  display: inline-block;
  background-color: #106487;
  width: auto;
  height: auto;
  padding: 7px 8px;
  border-radius: 5px;
  color: #fff;
  line-height: 1;

}

.exp_list .exp_item {
  margin-bottom: 5px;
}

.job_no {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 20px;
  display: block;
}

@media screen and (max-width: 768px) {
  .job_no {
    font-size: 15px;
  }
}


.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.progressbar li {
  color: #a3a3a3;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  width: 25%;
  list-style-type: none;
position: relative;
}
.progressbar li:before {
  display: block;
  z-index: 1;
  width: 15px;
  height: 15px;
  margin: 3px auto;
  content: '';
  text-align: center;
  border-radius: 50%;
  background-color: #a3a3a3;
position: relative;
}
.progressbar li:after {
  position: absolute;
  z-index: 0;
  top: 10px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #a3a3a3;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active,
.progressbar li.complete{
  color: #106487;
}
.progressbar li.active:before,
.progressbar li.complete:before {
  background-color: #106487;
}
.progressbar li.active:after,
.progressbar li.complete:after {
  background-color: #106487;
}

.stepform_list {
  margin: 30px auto 0 auto;
}
.step_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step_btn.next {
  width: 135px;
  height: 50px;
  margin: 0 10px;
  background: #106487;
  color: #fff;
  border-radius: 25px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step_btn_wrap button {
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.step_btn.back {
  width: 135px;
  height: 50px;
  margin: 0 10px;
  background: #bdbdbd;
  color: #fff;
  border-radius: 25px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step_error {
  display: none;
  padding-top: 5px;
  color: #dd0202;
  font-size: 15px;
  line-height: 1.6em;
  clear: both;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#simple_search {
  background: #e5f4fe;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

#mv-search {
  max-width: 1280px;
  margin: -92px auto 0 auto;
}
#mv-search .search-area {
  position: relative;
}
#mv-search .search-area .tab {
  width: 183px;
  height: 33px;
  background-color: #2f78ba;
  border-radius: 9px 9px 0 0;
  position: relative;
}
#mv-search .search-area .tab .tab-content {
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 183px;
}
#mv-search .search-area .search-box {
  padding: 22px;
  display: flex
;
  justify-content: space-between;
  background: #50a1d8;
}
#mv-search .search-area .search-box .box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fff;
  width: 325px;
  height: 50px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 0 15px;
}
#mv-search .search-area .search-box .box span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: left;
  width: auto;
  text-overflow: ellipsis;
}
#mv-search .search-area .search-box .cross-icon img {
  padding-top: 17px;
}
#mv-search .search-area .search-box .search-button-box {
  width: 200px;
  height: 51px;
  line-height: 51px;
  font-size: 16px;
  background: #106487;
  cursor: pointer;
  color: #fff;
  text-align: center;
}
#mv-search .search-area .search-box .box:before {

}

.simple-search-modal {
  position: relative;
  display: none;
}
.simple-search-modal-bk {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
  background-color: #0008;
}
.simple-search-modal-box {
  display: none;
  position: fixed;
  z-index: 999999;
  width: 90%;
  max-width: 940px;
  max-height: 80vh;
  top: 10%;
  left: calc(50% - 490px);
  background: #fff;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .simple-search-modal-box {
    left: 5%;
  }
}

.simple-search-modal-box h2 {
	display:flex;
	justify-content:space-between;
    background-color: #50a1d8;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
	font-style:inherit;
}
.simple-search-modal-box h2 i {
    color: #fff;
    font-size: 18px;
    font-style: normal;
}
.simple-search-modal-box h2 img {
  margin-right: 5px;
}
.simple-search-modal-box #cboxClose {
  position: absolute;
  top: 15px;
  right: 20px;
  background: url(../images/i_d_close.svg) no-repeat;
  width: 25px;
  height: 25px;
  content: "";
}
.simple-search-modal-box #cboxClose span {
  display: none;
}

.simple-search-modal .modal-button {
  text-align: center;
  border-radius: 4px;
  background-color: #f4f4f4;
  padding-top: 30px;
  padding-bottom: 30px;
}
.simple-search-modal .condition-search-accept {
  display: inline-block;
  width: 210px;
  height: 60px;
  border-radius: 9px;
  background: #3b95c4;
  font-weight: bold;
  font-size: 14px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.simple-search-modal .condition-search-clear-checkbox {
  margin-left: 55px;
  display: inline-block;
  width: 210px;
  height: 60px;
  border-radius: 9px;
  background: #a2a8ac;
  font-weight: bold;
  font-size: 14px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.simple-search-modal .condition-select-btn {
  display: inline-block;
  width: 210px;
  height: 60px;
  border-radius: 9px;
  background: #50a1d8;
  font-weight: bold;
  font-size: 14px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.modal-section {
  padding: 20px;
	max-height: calc(80vh - 180px);
  overflow-y: auto;
}
.modal-section-box {
  display: flex;
}
.sp_parent {
  display: none;
}

.modal-section-box ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.modal-section-box ul.noflex {
  display: block;
}
.modal-section-box ul.noflex li {
  margin-bottom: 20px;
}
.modal-section-box ul.noflex li .child_list {
  display: flex;
  flex-wrap: wrap;
}
.modal-section-box ul.noflex li .child_list p {
  width: 24%;
  margin: 0 1% 10px 0;
}

.modal-section-box label span {
  margin-left: 5px;
}

.modal-section-box ul li .parent {
  font-weight: bold;
  margin-bottom: 10px;
}

.modal-section-box ul li p {
  margin-bottom: 5px;
}


@media screen and (max-width: 768px) {

  .modal-section {
    padding: 20px 0;
  }

  #simple_search {
    background: #fff;
    margin-bottom: 0;
  }

  #mv-search {
    margin: 0;
  }
  .cross-icon {
    display: none;
  }
  #mv-search .search-area .search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #mv-search .search-area .search-box .box {
    width: 32%;
    margin-bottom: 10px;
    height: auto;
    line-height: 1.8;
    padding: 10px 0;
  }
  #mv-search .search-area .search-box .box:before {
    display: none;
  }
  
  #mv-search .search-area .search-box .box img {
    margin: 0 auto;
  }
  #mv-search .search-area .search-box .box span {
    width: 100%;
    padding: 0 10px;
    height: 22px;
    text-align: center;
    font-size: 3.5vw;
  }

  #mv-search .search-area .search-box .search-button-box {
    margin: 0 auto;
  }

  .sp_parent {
    display: block;
    width: 40%;
  }
  .sp_parent p {
    padding: 10px;
    background-color: #f5f5f5;
    color: #000;
    border: 1px solid #f5f5f5;
  }
  .sp_parent p.act {
    color: #fff;
    background-color: #3b4043;
    border: 1px solid #f5f5f5;
  }
  .modal-section .modal-section-box ul {
    width: 60%;
    padding-left: 10px;
    padding-top: 10px;
  }
  .modal-section .modal-section-box ul li {
    display: none;
  }
  .modal-section .modal-section-box ul li.act {
    display: block;
  }
  .modal-section-box ul.noflex li .child_list {
    display: block;
    width: 100%;
  }
  .modal-section-box ul.noflex li .child_list p {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .simple-search-modal-box {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 0;
    border-radius: 0;
  }
  .modal-section {
    padding: 0;
  }
  .simple-search-modal-box h2 {
    border-radius: 0;
    padding-left: 70px;
  }
  .simple-search-modal .modal-button {
    width: 100%;
    border-radius: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 0;
  }
  .simple-search-modal .condition-search-accept {
    width: auto;
    height: auto;
    padding: 10px 30px;
    line-height: 1.8;
  }
  .simple-search-modal .condition-search-clear-checkbox {
    margin-left: 10px;
    width: auto;
    height: auto;
    padding: 10px 30px;
    line-height: 1.8;
  }

  .simple-search-modal-box #cboxClose {
    top: 3px;
    right: auto;
    background: none;
    width: auto;
    height: auto;
    content: "";
    color: #fff;
  }
  
  .simple-search-modal-box #cboxClose span {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    border: 1px solid #fff;
    padding: 8px 10px;
    border-radius: 5px;
  }

}


.tab-pane {
  background-color: #d9d9d9;
  border: none;
  padding: 15px;
  margin-bottom: 50px;
}
.c-searchPanel {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}

.c-searchKeyPanel {
  display: flex;
  width: 100%;
}
.c-searchKeyPanel .in_keyword {
  width: 57.5%;
  margin-right: 2.5%;
  outline: none;
}
.c-searchKeyPanel .btn_search_panel {
  width: 40%;
  border-radius: 9px;
  background: #f54295;
  border: 2px solid #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-size: 17px;
  line-height: 57px;
  color: #fff;
  text-align: center;
}
.c-searchKeyPanel .btn02 {
	background: #106487;
	color: #fff;
	border: none;
}
.c-searchKeyPanel .btn02::after{
	border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
.c-searchKeyPanel .btn02:hover {
	background: #106487;
	opacity:0.7;
}


.c-searchPanel .c-searchPanel__head {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
}
.c-searchPanel .c-searchPanel__head .box_item {
    width: 48%;
    margin-right: 2%;
    background-color: #fff;
    padding: 15px;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
}
.c-searchPanel .c-searchPanel__head input.in_keyword {
	width: 98%;
	margin-top: 15px;
	border: none;
	padding: 10px;
	border-radius: 0;
}

.c-searchPanel .box_item.act {
  background-color: #50a1d8;
/*  border: solid 3px #fff;*/
}
.c-searchPanel .box_item.act .title {
  color: #fff;
}
.c-searchPanel .box_item figure img {
  height: 40px;
  margin-bottom: 10px;
}
.c-searchPanel .box_item figure .det {
  display: inline-block;
}
.c-searchPanel .box_item figure .act {
  display: none;
}
.c-searchPanel .box_item.act figure .det {
  display: none;
}
.c-searchPanel .box_item.act figure .act {
  display: inline-block;
}

.c-searchPanel .box_item .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.c-searchPanel .box_item .sel_txt {
  display: table;
  margin: 0 auto;
  width: 90px;
  color: #666;
  padding: 5px 15px;
  background-color: #e9e9e9;
  border-radius: 20px;
  position: relative;
  font-size: 13px;
  line-height: 1;
}

.c-searchPanel .box_item.act .sel_txt {
    max-width: 80%;
    color: #fff;
    background-color: #2E78C4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-align: left;
    width: auto;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    height: 27px;
    line-height: 1.5;
}

.c-searchPanel .c-searchPanel__body {
  display: flex;
  width: 50%;
  justify-content: space-between;
  flex-direction: column;
}

.c-searchPanel .c-searchPanel__body li {
  display: flex;
  align-items: center;
  height: 38px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  padding: 0px 25px;
}


.c-searchPanel li.box_item {
  display: flex;
  align-items: center;
}
.c-searchPanel li.box_item figure img {
  height: 25px;
  margin-bottom: 0;
  margin-right: 10px;
}
.c-searchPanel li.box_item .stitle {
  font-size: 16px;
  font-weight: bold;
  width: 100px;
}
.c-searchPanel li.box_item.act .stitle {
  color: #fff;
}
.c-searchPanel li.box_item .sel_txt {
    display: table;
    margin: 0;
    width: 90px;
    color: #666;
    padding: 4px 15px;
    background-color: #e9e9e9;
    border-radius: 20px;
    position: relative;
    font-size: 13px;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 768px) {
  .tab-pane {
    margin-bottom: 50px;
  }
  .c-searchPanel {
    flex-wrap: wrap;
  }
  .c-searchPanel .c-searchPanel__head {
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
  }
  .c-searchPanel .c-searchPanel__head .box_item {
    width: 48%;
    margin-right: 0;
  }

  .c-searchPanel .c-searchPanel__body {
    width: 100%;
    flex-direction: row;
  }

  .c-searchPanel .c-searchPanel__body li {
    width: 32%;
    flex-wrap: wrap;
    height: auto;
    padding: 10px 5px;
    text-align: center;
    justify-content: center;
  }
  .c-searchPanel li.box_item figure img {
    height: 4vw;
    margin-right: 1vw;
    margin-bottom: 1vw;
  }
  .c-searchPanel li.box_item .stitle {
    font-size: 3vw;
    width: auto;
  }
  .c-searchPanel li.box_item .sel_txt {
    width: 100%;
    padding: 5px 10px;
    font-size: 2.5vw;
    margin-top: 1vw;
  }
  .c-searchPanel .box_item .sel_txt:after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
  }

  .c-searchKeyPanel .in_keyword {
    font-size: 3vw;
  }


}


input.txt_w47p {
	width: 75%;
}
@media screen and (max-width: 768px) {
	input.txt_w47p {
		width:100%;
	}
}

.kiyaku_box {
  display: table;
  margin: 20px auto;
}
.kiyaku_box a {
  text-decoration: underline;
  color: #106487;
}


.box_menu {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
}
.box_menu h3 {
  margin-bottom: 10px;
}
.box_menu h3 a {
  font-size: 16px;
  color: #106487;
  position: relative;
  padding-left: 20px;
}
.box_menu h3 a::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #106487;
    border-right: solid 2px #106487;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
}
.box_menu .note_text {
  font-size: 14px;
}

.ctag {
  display: inline-block;
  background-color: #000;
  color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 13px;
  margin: 0 5px 5px 0;
}
.ctag_1 {
  background-color: #0b70d4;
}
.ctag_2 {
  background-color: #1fa7d1;
}
.ctag_3 {
  background-color: #dd7228;
}
.ctag_4 {
  background-color: #cb1717;
}
.ctag_5 {
  background-color: #c6ad11;
}
.ctag_6 {
  background-color: #8d18d2;
}
.ctag_7 {
  background-color: #0a8c28;
}
.ctag_8 {
  background-color: #ec8d8d;
}

p.column_kind {
	color: #666;
	font-size: 14px;
}

.page_2col {
    display: table;
    width: 100%;
    margin: 0;
}

#side {
    width: 25%;
    display: table-cell;
    vertical-align: top;
    padding-left: 2em;
}
.side_blog {
    margin-bottom: 24px;
}
.side_blog_head {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background: #F5F5F5;
    border-top: none;
    border-right: solid 1px #E2E2E2;
    border-bottom: solid 1px #E2E2E2;
    border-left: solid 1px #E2E2E2;
    text-align: center;
    padding: 0 0 12px;
    font-size: 114%;
}
.side_blog_head:before {
    display: block;
    border-top: solid 4px #3498db;
    content: '';
    margin-bottom: 12px;
}

.side_blog_body {
    background-color: #fff;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 12px;
    border-top: none;
    border-right: solid 1px #E2E2E2;
    border-bottom: solid 1px #E2E2E2;
    border-left: solid 1px #E2E2E2;
    text-align: center;
}
.side_blog_body ul li {
    border-bottom: 1px dashed #E2E2E2;
    text-align: left;
    padding: 10px 0;
}
.side_blog_body ul li:last-child {
    border: none;
}