@charset "UTF-8";

/* タクシー転職ナビの強み用フォント */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@700&family=Montserrat:wght@100;700&family=Roboto:wght@900&display=swap");

/*  content01  */
.content01 {
  padding: 20px 0 20px;
}

/*  エリアから探す  */
.area-search-wrap {
  padding-left: 50%;
  background: url(../images/search_map.png) no-repeat;
  background-position: left center;
  margin-bottom: 50px;
  position: relative;
}
.area-search-wrap dl {
  width: 100%;
}
.area-search-wrap dt {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
  text-align: left;
  pointer-events: none;
}
.area-search-wrap dd {
}
.area-search-wrap dd a {
  color: #000;
  background: #dcdcdc;
  padding: 5px 15px;
  border-radius: 50px;
  margin: 0 5px 10px 0;
}

@media screen and (max-width: 768px) {
  .area-search-wrap {
    padding: 0;
    background: none;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .area-search-wrap dd a {
    display: inline-block;
  }

  /* SPのみアコーディオン */
  .acc-wrap {
    margin-bottom: 10px;
  }
  .acc-wrap .acc-btn {
    border-bottom: 1px solid #005eaa;
    position: relative;
    transition-duration: 0.2s;
    pointer-events: inherit;
  }
  .acc-wrap .acc-btn::after {
    content: "";
    display: inline-block;
    width: 0px;
    border: 10px solid #005eaa;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 8px;
    right: 10px;
  }
  .acc-wrap .acc-btn.open::after {
    content: "";
    display: inline-block;
    width: 0px;
    border: 10px solid #005eaa;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: none;
    top: 0;
  }
  .acc-wrap .acc-inner {
    display: none;
    padding: 10px 0 0;
    text-align: left;
    box-sizing: border-box;
  }
}

/* 求人を探すの見出し */
.search-title {
  color: #313131;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  border: 3px solid #000;
  background: #fff;
  padding: 10px 30px;
  display: inline-block;
}

.area-search-wrap .search-title {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .search-title {
    text-align: center;
    font-size: 4.5vw;
    padding: 5px 20px;
    width: 100%;
    border: 2px solid #000;
  }
}

.occu-search-wrap,
.type-search-wrap {
  width: 49%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .occu-search-wrap,
  .type-search-wrap {
    width: 100%;
  }
}

/* SP エリアから探す */
@media screen and (max-width: 768px) {
  .area-search-wrap {
    width: 200vw;
    overflow-x: hidden;
    align-items: flex-start;
  }
  .area-search-tab {
    display: flex;
    flex-wrap: wrap;
    transition: all 0.4s;
    width: 94vw;
  }
  .area-search-tab.hide {
    transform: translate(-110%);
    transition: all 0.4s;
  }
  .area-search-tab .tab-menu-item {
    cursor: pointer;
    width: 50%;
  }
  .area-search-box-wrap {
    transform: translate(110%);
    transition: all 0.4s;
    width: 94vw;
  }
  .area-search-box-wrap.is-show {
    transform: translate(-100%);
    transition: all 0.4s;
  }
  .area-search-box-wrap .tab-contents {
    display: none;
  }
  .area-search-box-wrap .is-contents-active {
    display: block;
  }
  .area-search-box-list {
    display: flex;
    flex-wrap: wrap;
  }
  .area-search-box-wrap .tab-box-item {
    cursor: pointer;
    width: 50%;
  }
  .area-search-tab .tab-menu-item,
  .area-search-box-wrap .tab-box-item {
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 13px;
    font-size: 16px;
    text-align: left;
    color: #004e9b;
  }
  .area-search-box-wrap .tab-box-item a {
    display: block;
    font-size: 16px;
    color: #004e9b;
  }
  .area-search-tab .tab-menu-item:nth-child(even),
  .area-search-box-wrap .tab-box-item:nth-child(even) {
    border-left: none;
  }
  .area-search-tab .tab-menu-item:nth-child(n + 3),
  .area-search-box-wrap .tab-box-item:nth-child(n + 3) {
    border-top: none;
  }
  .area-search-tab .tab-menu-item::after,
  .area-search-box-wrap .tab-box-item::after {
    position: absolute;
    top: 50%;
    right: 13px;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #004e9b;
    border-right: 1px solid #004e9b;
    transform: translateY(-50%) rotate(45deg);
  }
  .area-search-tab .backto-tab-menu,
  .area-search-box-wrap .backto-tab-menu {
    color: #000;
  }
  .area-search-tab .backto-tab-menu::after,
  .area-search-box-wrap .backto-tab-menu::after {
    transform: translateY(-50%) rotate(-135deg);
    right: 10px;
  }
}

/*  職種から探す  */
.occu-search-wrap ul {
  margin-top: 10px;
}
.occu-search-wrap ul li {
  width: 48%;
}
.occu-search-wrap ul li a {
  width: 100%;
  height: 90px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.occu-search-wrap ul li:nth-child(1) a {
  background: url(../images/search_occu01.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.occu-search-wrap ul li:nth-child(2) a {
  background: url(../images/search_occu02.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.occu-search-wrap ul li:nth-child(3) a {
  background: url(../images/search_occu03.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.occu-search-wrap ul li:nth-child(4) a {
  background: url(../images/search_occu04.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.occu-search-wrap ul li a span {
  width: 100%;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 7px 0;
  background: rgba(1, 1, 1, 0.7);
}
@media screen and (max-width: 768px) {
}
/*  業種から探す  */
.type-search-wrap ul {
  margin-top: 10px;
}
.type-search-wrap ul li {
  width: 31.33%;
}
.type-search-wrap ul li a {
  width: 100%;
  color: #000;
  background: #dcdcdc;
  border-radius: 50px;
  padding: 15px 10px;
  margin: 10px 5px 10px 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .type-search-wrap ul li {
    width: 48%;
  }
  .type-search-wrap ul li a {
    padding: 10px 10px;
    margin: 7px 0;
  }
}

/*  content02  */
.content02 {
  padding-top: 47px;
  padding-bottom: 65px;
  position: relative;
}
.content02 .box {
  margin-left: 10px;
  margin-right: 10px;
}
.content02 .box a {
  display: block;
  position: relative;
  /*  box-shadow: 0px 0px 8px 0px rgba(172, 175, 175, 0.3);*/
}
.content02 .box a h3 {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.2em;
  padding: 9px 0;
  height: 100px;
}
.content02 .box a .img-wrap {
  width: 100%;
  height: 100px;
}
.content02 .box .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content02 .slick-prev,
.content02 .slick-next {
  width: 60px;
  height: 60px;
}
.content02 .slick-prev {
  left: -70px;
}
.content02 .slick-next {
  right: -70px;
}

@media screen and (max-width: 768px) {
  .content02 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content02 .slick-class03 {
    margin-top: 20px;
  }
  .content02 .slick-class03 {
    margin-left: -3vw;
    margin-right: -3vw;
  }

  .content02 .slick-prev,
  .content02 .slick-next {
    width: 30px;
    height: 30px;
  }
  .slick-prev:before,
  .slick-next:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 21px;
    background: url(../images/arrow_slide.png) #37414f no-repeat center center /
      cover;
  }
  .content02 .slick-prev {
    left: -18px;
  }
  .content02 .slick-next {
    right: -18px;
  }
}

.content03 {
  padding: 20px 0 50px;
  text-align: left;
  overflow: hidden;
}

.content03 dl {
  padding: 10px 0;
}
.content03 dl dt {
  width: 85px;
  padding: 6px 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.content03 dl dt.contents-column {
  background: #005eaa;
}
.content03 dl dt.contents-news {
  background: #20b1a7;
}
.content03 dl dd {
  margin-left: 20px;
}
.content03 dl dd a {
  color: #000;
  text-decoration: underline;
}

.more-btn {
  width: 100%;
  text-align: center;
  padding: 14px 0;
  margin-top: 15px;
  display: block;
  color: #004e9b;
  background: #fff;
  border: 2px solid #004e9b;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .content03 dl dt {
    min-width: 85px;
  }

  .more-btn {
    padding: 8px 0;
    margin-top: 5px;
  }
}

.content04 {
  padding: 20px 0 50px;
  overflow: hidden;
}
.content04 .box {
  /* width: 25%; */
  margin-bottom: 20px;
  padding: 15px;
}
.content04 .box a {
  display: block;
}

.content04 .box .img-wrap {
  width: 100%;
}
.content04 .box .img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content04 .box .txt-wrap {
  text-align: left;
  padding: 10px 10px;
}
.content04 .box .place {
  color: #9d9d9d;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .content04 .box {
    margin: 0 5px;
    padding: 0px;
  }
  .content04 .box .img-wrap img {
    height: 103px;
  }

  .content04 .slick-prev {
    width: 30px;
    height: 30px;
    left: 0;
  }
  .content04 .slick-next {
    width: 30px;
    height: 30px;
    righ: 0;
  }
}

.content05 {
  padding: 20px 0 80px;
  overflow: hidden;
}
.content05 .box {
  background: #fff;
}
.content05 .box .img-wrap {
  width: 35%;
  max-width: 370px;
}
.content05 .box .img-wrap img {
}
.content05 .box h3 {
  margin-bottom: 10px;
}
.content05 .box .txt-wrap {
  width: 70%;
  text-align: left;
  padding: 50px;
}

.content05 .slick-prev,
.content05 .slick-next {
  width: 60px;
  height: 60px;
}
.content05 .slick-prev {
  left: -70px;
}
.content05 .slick-next {
  right: -70px;
}
@media screen and (max-width: 768px) {
  .content05 .box {
    margin: 0 1vw;
  }
  .content05 .box .img-wrap {
    width: 100%;
    max-width: inherit;
  }
  .content05 .box .txt-wrap {
    width: 100%;
    padding: 20px 20px;
  }

  .content05 .slick-prev {
    left: -0px;
  }
  .content05 .slick-next {
    right: -30px;
  }
}

.content06 {
  padding: 20px 0 50px;
  overflow: hidden;
}
.content06 .box {
  margin-bottom: 20px;
  position: relative;
}
.content06 .box::before {
  color: #ccc;
  font-size: 6vw;
  line-height: 1em;
  font-weight: bold;
  font-family: "Hind Siliguri", sans-serif;
  font-family: "Montserrat", sans-serif;
  font-family: "Roboto", sans-serif;
  margin-right: 30px;
}
.content06 .box:nth-child(1)::before {
  content: "01";
}
.content06 .box:nth-child(2)::before {
  content: "02";
}
.content06 .box:nth-child(3)::before {
  content: "03";
}
.content06 .box:nth-child(4)::before {
  content: "04";
}

.content06 .box .txt-wrap {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .content06 .box::before {
    font-size: 8vw;
    margin-right: 10px;
  }
}

/*  content07  */
.content07 {
  padding: 20px 0 50px;
}
.content07 .list-wrap li {
  display: flex;
  /* align-items: center; */
  overflow: hidden;
  padding: 0 0 16px;
}
.content07 .list-wrap li .date {
  min-width: 170px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.2em;
}
.content07 .list-wrap li .text {
  font-weight: normal;
  font-size: 14px;
  overflow: hidden;
}
.content07 .list-wrap li a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .content07 {
    padding: 20px 0 50px;
  }
  .content07 .list-wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .content07 .list-wrap li {
    /* display: block; */
    padding: 0 0 20px;
    width: 48%;
    flex-direction: column;
  }
  .content07 .list-wrap li:last-child {
    padding: 0 0 0;
  }
  .content07 .list-wrap li .date {
    padding-bottom: 10px;
    font-size: 14px;
    display: block;
  }
  .content07 .list-wrap li .text {
    font-size: 14px;
    padding: 10px 0 0;
    display: block;
  }
}

.column-body {
  display: flex;
  .column-group {
    width: 50%;
    padding: 15px;

    p{
      text-align: left;
      margin-bottom: 15px;
      border-left: 3px #005eaa solid;
      padding: 0 10px;
    }

    .column_left {
      /* width: 30%; */
      img {
        width: 160px;
        height: 100px;
        object-fit: cover;
      }
    }
    .column_right {
      width: 70%;
      padding-left: 20px;
    }
  }
}
.column-button{
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .column-body {
    display: block;
    .column-group {
      width: 100%;
      .column_right {
        width: 100%;
        padding-left: 0;
      }
    }
  }
}

#mv_form {
	width: 100%;
	padding: 1em 0;
    /* margin-top: 2em; */
    background: #213245;
	display: flex;
    justify-content: center;
    align-items: center;
}
#mv_form .title {
	max-width: 293px;
    margin-right: 20px;	
}
#mv_form form {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 0 1em;
}
#mv_form a {
  color: #fff;
}
.kyujin-box {
  background: #F4F6F8;
  padding: 10px;
}
.kyujin-box .tx-left{
  min-height: 140px;
}
.mv_form_select {
    width: 200px;
    height: 50px;
    font-size: 16px;
    padding: 0.5em 0.75em;
    background: url(../images/select_arrow.png) no-repeat #fff;
    background-position: 95% center;
	border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.mv_form_input[type="text"] {
	width: 250px;
    height: 55px;
    font-size: 16px;
    padding: 0.5em 0.75em;
    background: #fff;
	border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#mv_form form img {
    width: 29px;
    height: auto;
}
.mv_form_input {
	width:65%;
	height: 53px;
	font-size: 18px;
}
.mv_form_submit {
	width: 150px;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.0em;
  height: 50px;
  border: none;
  border-radius: 5px;
  padding-left: 3.5%;
  background: url(../images/i_search.png) no-repeat #1D6DC6;
  background-size: 25px;
  background-position: left 20% center;
  cursor: pointer;
  box-sizing: border-box;
}
.mv_form_button {
  width: 150px;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 2.3em;
  height: 55px;
  border: none;
  border-radius: 50px;
  padding-left: 8px;
  background: #333;
  cursor: pointer;
  box-sizing: border-box;
}
/* spview */
@media screen and (max-width:767px) {
	#mv_form {
		padding: 1.5em 2.5vw;
    /* margin-top: 1.5em; */
    flex-direction: column;
    background-color: #F3F3F3;
	}
	#mv_form .title {
		width: 60%;
		margin-bottom: 20px;
	}
	#mv_form form {
		width: 100%;
        flex-wrap: wrap;
		gap: 1em 0.5em;
	}
	.mv_form_select {
		width: 7.5em;
        height: 50px;
        padding: 0.5em 0.5em;
	}
	.mv_form_input[type="text"] {
		width: calc(100% - (7.5em + 20px + 1em));
		height: 50px;
        padding: 0.5em 0.5em;
	}
	#mv_form form img { width: 20px; }
	.mv_form_submit {
    width: 70px;
		font-size: 16px;
      padding-left: 1.0em;
      background-size: 15px;
      background-position: left 15% center;
	}
  .mv_form_button {
		font-size: 20px;
    line-height: 2.7em;
	}
  #mv_form a {
    width: 100%;
    text-align: right;
    padding-right: 10px;
    color: #474747;
  }
}

.company-list{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  box-sizing: border-box;
  justify-content: center;
}
.grid-wrap {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 150px); /* 2行固定 */
  gap: 10px;
  width: max-content; /* 横スクロールを有効に */
}
.company_item {
  width: 150px;
  height: 150px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  border-radius: 10px;

  img {
    object-fit: contain;
  }
}
  .company_item a div.img-wrap div{
    height: 30px;
  }

.group-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}
.group_item {
  width: 19%;
  border: 2px solid #004e9b;
  margin: 5px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 5px;
  margin: 5px;
}
.group_item img{
  height: 100px;
  padding: 20px;
}
.group_item span{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #004e9b;
  color: white;
  height: 50px;
  font-size: 12px;
  padding: 0 10px;
}
@media screen and (max-width:767px) {
  .company-list{
    padding: 0 20px;
    justify-content: flex-start;
  }
  .grid-wrap {
    grid-template-rows: repeat(2, 120px); /* 2行固定 */
    gap: 5px;
  }
  .company_item {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
  }
  .company_item a div.img-wrap div{
    font-size: 13px;
    line-height: 1.2;
  }
  .group_item {
    width: 47%;
  }
}

.other_conditions .head .tit,
.other_conditions2 .head .tit {
    padding: 0 0 5px 0;
    line-height: 1.8em;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}
.other_conditions .head .tit .sub
.other_conditions2 .head .tit .sub {
    line-height: 1.8em;
    font-size: 16px;
    font-weight: normal;
}