@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
}
body {
  position: relative; /* ::before を配置するため */
  margin: 0;
  min-height: 100vh;
  /* background-image: url(../img/index/map_img.svg);
	background-repeat: no-repeat;
	background-size: 848px auto;
 background-position: 185px 75px; */
}
/* body::before {
	content: "";
  position: fixed;
  inset: 0;
  background-image: url(../img/index/map_img.svg);
  background-repeat: no-repeat;
  background-size: 848px auto;
  background-position: 185px 75px;
  opacity: 0;
  animation: fadeInBg 2s ease 0.5s forwards;
  z-index: -1;
}
body.top::before {
	background-size: 68.333333vw auto;
	top: 1vw;
	right: 8vw;
	translate: 0 0;
	rotate: 0deg;
} */

.h2_ttl {
  font-size: 42px;
  display: flex;
  align-items: center;
}
.ttl_wrapper {
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
.ttl_wrapper p a {
  color: #006b48;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  padding-right: 10px;
}
.ttl_wrapper p a::after {
  content: "";
  position: absolute;
  border: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  border-top: solid 1px #006b48;
  border-right: solid 1px #006b48;
  display: inline-block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  transition: 0.3s;
}
.ttl_wrapper p a:hover {
  color: #12996d;
}
.map_icon {
  width: 46px;
  height: 48px;
}
.info_icon {
  width: 37px;
  height: 49px;
}
.search_icon {
  width: 46px;
  height: 46px;
}
.search_icon_wh {
  width: 14px;
  height: 14px;
}
.faq_icon {
  width: 60px;
  height: 48px;
}
.star_icon {
  width: 29px;
  height: 29px;
}
@media screen and (max-width: 980px) {
  .ttl_wrapper {
    gap: 12px;
  }
}
@media screen and (max-width: 640px) {
  .h2_ttl {
    font-size: 30px;
  }
  .map_icon {
    width: 35px;
    height: 36px;
  }
  .search_icon {
    width: 32px;
    height: 32px;
  }
  .info_icon {
    width: 26px;
    height: 35px;
    margin-top: 4px;
  }
  .faq_icon {
    width: 42px;
    height: 33px;
  }
}
/*-----------------------------------

	mainvisual_block

-----------------------------------*/
#mainvisual_block {
  margin-top: 80px;
  padding-bottom: 120px;
}
#mainvisual_block .mainvisual {
  margin-top: 30px;
  margin-bottom: 65px;
}
#mainvisual_block .mainvisual .mainvisual_inner {
  flex-wrap: nowrap;
  gap: 2%;
}
#mainvisual_block .mainvisual .text_box {
  width: 48%;
}
#mainvisual_block .mainvisual .text_box > img:first-child {
  width: 516px;
  margin-bottom: 25px;
}
#mainvisual_block .mainvisual .text_box > img:last-child {
  width: 485px;
}
#mainvisual_block .mainvisual .text_box .btn_box {
  width: 270px;
  margin-top: 30px;
}
#mainvisual_block .mainvisual .text_box .btn_box .btn {
  width: 100%;
  padding: 18px 0;
  margin-bottom: 20px;
  padding-left: 50px;
}
#mainvisual_block .mainvisual .text_box .btn_box .search_btn {
  padding-left: 0;
  justify-content: center;
}

#mainvisual_block .mainvisual .img_box {
  max-width: 580px;
  width: 50%;
}
#mainvisual_block .swiper_box .contents_inner {
  position: relative;
}
#mainvisual_block .swiper_box .contents_inner .h2_ttl {
  display: flex;
  align-items: end;
  font-size: 14px;
  color: #fff;
  gap: 10px;
  margin-bottom: 15px;
}
#mainvisual_block .swiper_box .contents_inner .h2_ttl img {
  width: 147px;
  height: 30px;
}
.swiper-button-prev::before {
  content: "" !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -36px;
  width: 39px;
  height: 39px;
  background: rgba(255, 255, 255, 1);
  border-radius: 30px;
  border: 1px solid #006b48;
}
.swiper-button-prev:after {
  content: "" !important;
  position: absolute;
  top: -4px;
  bottom: 0;
  left: -20px;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid #006b48;
  border-right: 1px solid #006b48;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  transition: 0.2s;
}
.swiper-button-next::before {
  content: "" !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 39px;
  height: 39px;
  background: rgba(255, 255, 255, 1);
  border-radius: 30px;
  border: 1px solid #006b48;
}
.swiper-button-next:after {
  content: "" !important;
  position: absolute;
  top: -4px;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid #006b48;
  border-right: 1px solid #006b48;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.2s;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -6px;
}
@media screen and (max-width: 980px) {
  body::before {
    background-size: 80% auto;
    background-position: 10% 90px;
  }
}
@media screen and (max-width: 640px) {
  body::before {
    background-size: 130% auto;
    background-position: 50% 50px;
  }
  #mainvisual_block .mainvisual {
    margin-bottom: 5px;
  }
  #mainvisual_block .swiper_box {
  }
  #mainvisual_block .swiper_box .contents_inner {
    width: 95%;
    margin: 0 0 0 auto;
  }
  #mainvisual_block .swiper_box .contents_inner .h2_ttl img {
    width: 97px;
  }
  #mainvisual_block .swiper_box .contents_inner .h2_ttl {
    font-size: 9px;
  }
  #mainvisual_block .mainvisual .text_box {
    width: 100%;
  }
  #mainvisual_block .mainvisual .text_box > img:first-child {
    margin-bottom: 20px;
  }
  #mainvisual_block .mainvisual .text_box .btn_box {
    display: flex;
    width: 100%;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
  }
  #mainvisual_block .mainvisual .text_box .btn_box .btn {
    width: 158px;
    padding-left: 10px;
    justify-content: left;
  }
  #mainvisual_block .mainvisual .btn.consult_btn span {
    position: absolute;
    top: -10px;
    left: 16px;
    border: 1px solid #ea5504;
    font-size: 12px;
    border-radius: 10px;
  }
  .swiper-button-prev::before {
    width: 26px;
    height: 26px;
    left: -27px;
    top: 5px;
  }
  .swiper-button-next::before {
    width: 26px;
    height: 26px;
    top: 5px;
    left: -11px;
  }
  .swiper-button-prev:after {
    width: 7px;
    height: 7px;
    top: -7px;
    left: -16px;
  }
  .swiper-button-next::after {
    width: 7px;
    height: 7px;
    top: -7px;
    right: 23px;
  }
}
/*-----------------------------------

	swiper_box

-----------------------------------*/
#mainvisual_block .swiper_box {
  background-image: url(../img/index/bg_img_gr.jpg);
  background-image: image-set(
    url("../img/index/bg_img_gr.webp") type("image/webp"),
    url("../img/index/bg_img_gr.jpg") type("image/jpeg")
  );
  background-size: cover;
  padding: 45px 0 40px;
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
  #mainvisual_block {
    margin-top: 40px;
    padding-bottom: 70px;
  }
  #mainvisual_block .swiper_box {
    background-image: url(../img/index/bg_img_gr.jpg);
    background-image: image-set(
      url("../img/index/bg_img_gr.webp") type("image/webp"),
      url("../img/index/bg_img_gr.jpg") type("image/jpeg")
    );
    padding: 10px 0 15px;
    position: relative;
  }
  .swiper-pagination {
    bottom: -40px !important;
    left: -15px !important;
  }
  .swiper-pagination-bullet {
    background-color: #fff;
    border: 1px solid #006b48;
  }

  .swiper-pagination-bullet-active {
    background-color: #006b48;
    /*アクティブなドットの透過度を1にする*/
    opacity: 1;
  }
}
/*-----------------------------------

	about_block

-----------------------------------*/
#about_block {
  padding-bottom: 80px;
}
#about_block .contents_inner {
  /* background-color: #fff; */
  border: 3px solid #006b48;
  border-radius: 20px;
  padding: 0 0 60px;
}
#about_block .about_inner {
  margin-bottom: 40px;
  /* background-color: #fff;
	border: 3px solid #006b48;
	border-radius: 20px; */
  padding: 40px 85px 0px;
}
#about_block .ttl_box h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}
#about_block .ttl_box h2 span {
  font-size: 18px;
  display: block;
  color: #006b48;
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;
}
#about_block .suggestion_box {
  max-width: 907px;
  margin: 0 auto;
  background-color: #e3efeb;
  padding: 35px 10px 35px 35px;
  border-radius: 20px;
}
#about_block .suggestion_box h3 {
  color: #006b48;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.3rem;
}
#about_block .suggestion_box ul {
  gap: 10px 2%;
  justify-content: flex-start;
}
#about_block .suggestion_box ul li {
  width: calc(98% / 2);
  font-size: 16px;
  position: relative;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 1em;
  text-indent: -1em;
}
#about_block .suggestion_box ul li span {
  color: #006b48;
}
#about_block .icon_area {
  width: 44px;
  margin: 30px auto;
}
#about_block .solution_box h3 {
  color: #006b48;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}
#about_block p {
  width: 90%;
  margin: 0 auto 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
#about_block .btn_box {
  gap: 20px;
  justify-content: center;
}
#about_block .btn_box .btn.consult_btn {
  width: 270px;
  padding-left: 52px;
}
#about_block .btn_box .btn.search_btn {
  width: 270px;
  padding-left: 0;
  justify-content: center;
}
#about_block .btn_box .btn.search_btn::after {
  content: "";
  position: absolute;
  border: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 14%;
  border-top: solid 1px #006b48;
  border-right: solid 1px #006b48;
  display: inline-block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  transition: 0.3s;
}
#about_block .btn_box .btn.search_btn:hover::after {
  border-color: #fff;
}
@media screen and (max-width: 980px) {
  #about_block .about_inner {
    padding: 30px 35px 0px;
  }
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
  #about_block {
    padding-bottom: 40px;
  }
  #about_block .contents_inner {
    border: none;
    border-top: 1px solid #006b48;
    border-bottom: 1px solid #006b48;
    border-radius: 0;
  }
  #about_block .about_inner {
    padding: 35px 0 0;
    margin-bottom: 20px;
  }
  #about_block .ttl_box h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  #about_block .suggestion_box {
    padding: 25px 20px 25px;
  }
  #about_block .suggestion_box h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  #about_block .suggestion_box ul {
    flex-wrap: wrap;
    gap: 6px 2%;
  }
  #about_block .suggestion_box ul li {
    width: 100%;
    font-size: 14px;
  }
  #about_block .solution_box .c_orange {
    display: block;
  }
  #about_block .icon_area {
    margin: 20px auto;
  }
  #about_block .solution_box h3 {
    font-size: 24px;
  }
  #about_block p {
    width: 100%;
    font-size: 16px;
    margin: 0 auto 30px;
  }
}

/*-----------------------------------

	search_block

-----------------------------------*/
#search_block {
  background: #fff;
  padding-bottom: 130px;
  margin-bottom: 70px;
}
#search_block .ttl_box .h2_ttl {
  margin-bottom: 70px;
  gap: 20px;
}
#search_block .map_box {
  position: relative;
  padding: 3% 21% 14% 21%;
  margin-left: 6.5%;
  margin-right: 4%;
  /* background-image: url(../img/index/search_img.svg); */
}
#search_block .map_box img {
  max-width: 526px;
}
#search_block .map_box .region_list {
  gap: 7px 5px;
  justify-content: space-between;
}
#search_block .map_box .region_box {
  position: absolute;
  max-width: 190px;
}
/* 北海道・東北 */
#search_block .map_box .region_box.region_01 {
  top: 0;
  right: 0;
}
/* 関東 */
#search_block .map_box .region_box.region_02 {
  top: 41%;
  right: 0;
}
/* 東海 */
#search_block .map_box .region_box.region_03 {
  bottom: 0;
  left: 47%;
}
/* 北陸・甲信越 */
#search_block .map_box .region_box.region_04 {
  top: 0;
  left: 23%;
}
/* 近畿 */
#search_block .map_box .region_box.region_05 {
  top: 0;
  left: 0;
}
/* 中国 */
#search_block .map_box .region_box.region_06 {
  top: 33%;
  left: 0;
}
/* 四国 */
#search_block .map_box .region_box.region_07 {
  bottom: 0;
  left: 23%;
}
/* 九州 */
#search_block .map_box .region_box.region_08 {
  bottom: 0;
  left: 0;
}

#search_block .map_box .region_box p {
  font-size: 18px;
  font-weight: bold;
  color: #006b48;
  margin-bottom: 12px;
}
#search_block .map_box .region_box li {
  width: calc((100% - 5px) / 2);
}
#search_block .map_box .region_box li a {
  padding: 10px 0 10px 14px;
}
@media screen and (max-width: 1250px) {
  #search_block .map_box .region_box {
    max-width: 130px;
  }
  #search_block .map_box .region_list li a {
    font-size: 13px;
    padding: 6px 0 6px 5px;
  }
}
@media screen and (max-width: 1250px) {
}
@media screen and (max-width: 980px) {
  #search_block {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
  #search_block::after {
    position: absolute;
    content: "";
    width: 90%;
    height: 1px;
    bottom: 0;
    background-color: #006b48;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  #search_block .contents_inner {
    width: 100%;
  }
  #search_block .contents_inner .ttl_box {
    width: 90%;
    margin: 0 auto;
  }
  #search_block .map_box {
    padding: 0;
    margin: 0;
    background-color: ;
  }
  #search_block .map_box .region_box {
    position: static;
    width: 100%;
    max-width: 100%;
  }
  #search_block .map_box .region_box .region_title {
    font-size: 20px;
    color: #000;
    background-color: #dee1d9;
    padding: 20px 55px;
    margin-bottom: 0;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  #search_block .map_box .region_box .region_title.close {
    color: #fff;
    background-color: #006b48;
  }
  #search_block .map_box .region_box .region_title.close .plus_ico:before,
  #search_block .map_box .region_box .region_title.close .plus_ico:after {
    background-color: #fff;
  }

  /* プルダウン */
  .plus_ico {
    width: 38px;
    height: 38px;
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .plus_ico:before,
  .plus_ico:after {
    position: absolute;
    content: "";
    width: 14px;
    height: 1.5px;
    background-color: #000;
    border-radius: 6px;
  }
  .plus_ico:before {
    top: 48%;
    left: 7px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .plus_ico:after {
    top: 48%;
    left: 7px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .close .plus_ico:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  footer .area_list.open {
    display: block;
  }
  footer .f_title.close .plus_ico:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #search_block .map_box .region_list_wrap {
    display: none;
  }
  #search_block .map_box .region_list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 25px auto;
    justify-content: space-between;
    gap: 12px 8px;
  }
  #search_block .map_box .region_box li {
    width: calc((100% - 20px) / 2);
  }
  #search_block .map_box .region_box li a {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    padding: 14px 0 14px 10px;
    border-radius: 6px;
    border: 1px solid #9fa0a0;
  }
  #search_block .map_box .region_box li a::after {
    border-color: #000;
  }
}
@media screen and (max-width: 980px) {
  #search_block .ttl_box .h2_ttl {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  #search_block .ttl_box .h2_ttl {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

/*-----------------------------------

	news_block

-----------------------------------*/
#news_block {
}

#news_block .contents_inner {
  gap: 7%;
}
#news_block .left_box {
  width: calc(93% - 305px);
}
#news_block .left_box .ttl_box .h2_ttl {
  margin-bottom: 37px;
}
#news_block .left_box .h2_ttl {
  gap: 20px;
}
#news_block .left_box .jobchange_box .column_box {
  margin-bottom: 50px;
}
#news_block .column_box .column_list {
  gap: 4%;
}
/* #news_block .column_box .column_list {
	width: calc(92% / 3);
} */
#news_block .column_box .column_list .img_box {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  height: 120px;
}
#news_block .column_box .column_list .img_box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#news_block .column_box .column_list .text_box {
  background-color: #fff;
}
#news_block .column_box .column_list .text_box .date {
  font-size: 14px;
  color: #006b48;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;
}
#news_block .column_box .column_list .text_box h4 {
  font-size: 20px;
  color: #006b48;
  line-height: 1.4;
  margin-bottom: 10px;
}
#news_block .column_box .column_list .text_box p {
  font-size: 16px;
  font-weight: bold;
}
#news_block .news_ttl_wrap .column_bg_icon {
  width: 122px;
  height: 37px;
}
#news_block .news_ttl_wrap .interview_bg_icon {
  width: 133px;
  height: 37px;
}
#news_block .left_box .jobchange_box {
  /* padding-top: 65px; */
}
#news_block .left_box .jobchange_box:not(:first-child) {
  border-top: 1px dashed #000000;
  padding-top: 60px;
}
#news_block .left_box .jobchange_box:last-child {
  border: none;
  padding-top: 0;
}
#news_block .left_box .jobchange_box .interview_box {
  margin-bottom: 70px;
}
#news_block .news_ttl_wrap h4 {
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 30px;
}
#news_block .news_ttl_wrap h4 a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  width: fit-content;
  padding-bottom: 3px;
}
#news_block .news_ttl_wrap h4 img {
  width: 38px;
  height: 38px;
}
#news_block .news_ttl_wrap h4 a.disabled {
  pointer-events: none;
}
#news_block .news_ttl_wrap h4 a.disabled img {
  display: none;
}
/* #news_block .news_ttl_wrap h4 .icon.hover {
	display: none;
}
#news_block .news_ttl_wrap h4 a:hover .icon.default {
    display: none;
}
#news_block .news_ttl_wrap h4 a:hover .icon.hover {
    display: inline;
} */
#news_block .interview_box .interview_list {
  gap: 4%;
}
/* #news_block .interview_box .interview_list li {
	width: calc(92% / 3);
} */
#news_block .interview_box .interview_list .img_box {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  height: 120px;
}
#news_block .interview_box .interview_list .img_box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#news_block .interview_box .interview_list .text_box {
  background-color: #fff;
}
#news_block .interview_box .interview_list .text_box span {
  color: #006b48;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
#news_block .interview_box .interview_list .text_box .date {
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;
}
#news_block .interview_box .interview_list .text_box h4 {
  font-size: 20px;
  color: #006b48;
  line-height: 1.4;
  margin-bottom: 10px;
}
#news_block .interview_box .interview_list .text_box p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
#news_block .interview_box .interview_list .text_box .company {
  font-size: 12px;
  margin-bottom: 5px;
}
#news_block .interview_box .interview_list .text_box .job {
  font-size: 12px;
}

.left_box .job_box {
  position: relative;
  padding-top: 90px;
  padding-bottom: 110px;
}
.left_box .job_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -22vw;
  width: 120vw;
  height: calc(100% + 80px);
  background-color: #f3f4f1;
  z-index: -99;
}
.job_box .search_box {
  margin-bottom: 30px;
}
.job_box .search_box .row_box {
  align-items: center;
  flex-wrap: nowrap;
  gap: 2%;
}

.job_box .search_box .select_box select {
  border: 1px solid #000;
  padding: 15px 10px;
  width: 263px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
}
.job_box .search_box button {
  width: 146px;
  min-width: 146px;
  padding: 12px 10px 12px 20px;
  background: #006b48;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.job_box .search_box button:hover {
  background: #12996d;
}
.job_box .search_box button::after {
  position: absolute;
  content: url(../img/common/link_icon_wh.svg);
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  right: 7%;
  margin: auto 0;
  font-size: 0;
}
.job_box .search_box .times_icon {
  width: 6px;
  height: 6px;
}
.job_box .keyword {
  margin-bottom: 70px;
}
.job_box .keyword h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
.job_box .keyword ul {
  justify-content: flex-start;
  gap: 3%;
}
.job_box .keyword ul li a {
  font-size: 18px;
  font-weight: bold;
  color: #006b48;
}
.job_box .workplace_box {
  margin-bottom: 65px;
}
.job_box .workplace_box h3 {
  font-size: 28px;
  color: #006b48;
  margin-bottom: 17px;
}
.job_box .workplace_box .row_box {
  column-gap: 25px;
  row-gap: 28px;
}
.job_box .workplace_box .row_box > li {
  width: calc((100% - 25px) / 2);
  display: flex;
  /* align-items: center; */
  /* height: 65px; */
  background: #fff;
}
.job_box .workplace_box .row_box > li .ttl_box {
  width: 65px;
  /* height: 65px; */
  background-color: #006b48;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
}
/* .job_box .workplace_box .row_box>li .ttl_box.close {
	background-color: #006b48;
	color: #fff;
} */
.job_box .workplace_box .row_box > li .ttl_box.close .plus_ico:before,
.job_box .workplace_box .row_box > li .ttl_box.close .plus_ico:after {
  background-color: #fff;
}
.job_box .workplace_box .row_box li .workplace_list_wrap {
  width: calc(100% - 65px);
}
.job_box .workplace_box .row_box li .workplace_list_wrap_inner {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 9px 5px 9px 12px;
}
.job_box .workplace_box .row_box li .workplace_list {
  width: calc(100% - 70px);
  display: flex;
  flex-wrap: wrap;
  /* padding: 9px 0 9px 12px; */
  gap: 0px 17px;
}
.job_box .workplace_box .row_box li .workplace_list a {
  color: #006b48;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}
.job_box .workplace_box .row_box li .workplace_list a:hover {
  color: #12996d;
}
.job_box .workplace_box .row_box li .img_box {
  max-width: 70px;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
}
.job_box .workplace_box .row_box li .img_box img {
  max-height: 50px;
}
/* .job_box .workplace_box .row_box li .img_box.workplace_icon_01 {
	width: 74px;
	height: 55px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_02 {
	width: 43px;
	height: 48px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_03 {
	width: 50px;
	height: 52px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_04 {
	width: 49px;
	height: 51px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_05 {
	width: 48px;
	height: 50px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_06 {
	width: 63px;
	height: 36px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_07 {
	width: 57px;
	height: 42px;
}
.job_box .workplace_box .row_box li .img_box.workplace_icon_08 {
	width: 37px;
	height: 52px;
} */

.job_box .occupation_box h3 {
  font-size: 28px;
  color: #006b48;
  margin-bottom: 18px;
}
.job_box .occupation_box .occupation_list {
  display: flex;
  flex-wrap: wrap;
  gap: 23px 3%;
}
.job_box .occupation_box .occupation_list li {
  width: calc(94% / 3);
}
.job_box .occupation_box .occupation_list li > p {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
}
.job_box .occupation_box .occupation_list .link_box {
  border: 1px solid #e2e2e3;
  border-radius: 5px;
  margin-bottom: 13px;
  overflow: hidden;
  position: relative;
}
.job_box .occupation_box .occupation_list .link_box::after {
  position: absolute;
  content: url(../img/common/link_icon_gr.svg);
  width: 10px;
  height: 10px;
  font-size: 0;
  top: 7px;
  right: 7px;
}
.job_box .occupation_box .occupation_list .link_box a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #006b48;
  gap: 6px;
  background-color: #fff;
}
.job_box .occupation_box .occupation_list .link_box a .occupation_name {
  letter-spacing: 0;
  margin-right: 5px;
}
.job_box
  .occupation_box
  .occupation_list
  .link_box
  a
  .occupation_name
  .lower_br {
  display: none !important;
}
.job_box .occupation_box .occupation_list .link_box a .occupation_name span {
  font-size: 12px;
}
.job_box .occupation_box .occupation_list img {
  width: 65px;
  height: 65px;
}

@media screen and (max-width: 1250px) {
  .job_box .search_box .select_box select {
    min-width: 153px;
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  #news_block .left_box {
    width: 100%;
  }
  .left_box .job_box {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .left_box .job_box::after {
    height: calc(100% + 60px);
  }
  .job_box .search_box .row_box {
    justify-content: flex-start;
  }
  .job_box .workplace_box {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 35px;
  }
  .job_box .workplace_box h3 {
    width: 80%;
    margin: 0 auto 20px;
  }
  .job_box .workplace_box .row_box {
    flex-direction: column;
    row-gap: 0;
  }
  .job_box .workplace_box .row_box > li {
    flex-direction: column;
    width: 100%;
  }
  .job_box .workplace_box .row_box li .img_box {
    display: none;
  }
  .job_box .workplace_box .row_box > li .ttl_box {
    width: 100%;
    font-size: 20px;
    color: #000;
    background-color: #dee1d9;
    padding: 20px 55px;
    margin-bottom: 0;
    border-bottom: 1px solid #fff;
    position: relative;
    justify-content: left;
  }
  .job_box .workplace_box .row_box > li .ttl_box.close {
    color: #fff;
    background-color: #006b48;
  }
  .job_box .workplace_box .row_box li .workplace_list_wrap {
    width: 100%;
    display: none;
  }
  .job_box .workplace_box .row_box li .workplace_list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 18px auto;
    justify-content: space-between;
    padding: 0;
    gap: 12px 5px;
  }
  .job_box .workplace_box .row_box li .workplace_list li {
    width: calc((100% - 15px) / 2);
  }
  .job_box .workplace_box .row_box li .workplace_list li a {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    padding: 10px 0 10px 10px;
    border-radius: 6px;
    border: 1px solid #9fa0a0;
  }
  .job_box .workplace_box .row_box li .workplace_list li a::after {
    content: "";
    position: absolute;
    border: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 14%;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    display: inline-block;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
  }
  .job_box .occupation_box h3 {
    width: fit-content;
    position: relative;
  }
  .job_box .occupation_box h3::after {
    content: url(../img/common/link_icon_gr.svg);
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    bottom: 0;
    right: -25px;
    margin: auto 0;
    font-size: 0;
  }
}
@media screen and (max-width: 640px) {
  #news_block .column_box .column_list {
    /* width: 95vw;
    margin-right: calc(-50vw + 50%); */
    width: 100%;
  }
  /* #news_block .column_box .column_list_wrap {
		overflow-x: auto;
    	overflow-y: hidden;
	}
	#news_block .column_box .column_list_wrap .column_list {
		width: 640px;
	} */
  #news_block .interview_box .interview_list {
    /* width: 95vw;
    margin-right: calc(-50vw + 50%); */
    width: 100%;
  }
  #news_block .news_ttl_wrap h4 {
    font-size: 24px;
  }
  #news_block .news_ttl_wrap h4 a {
    width: 100%;
    justify-content: space-between;
  }
  .job_box .search_box .row_box {
    flex-direction: column;
    gap: 15px;
  }
  .job_box .search_box .row_box .select_box {
    width: 100%;
  }
  .job_box .search_box .times_icon {
    display: none;
  }
  .job_box .search_box button {
    width: 270px;
    text-align: center;
    padding: 12px 10px 12px 10px;
  }
  .job_box .occupation_box .occupation_list img {
    display: none;
  }
  .job_box .occupation_box .occupation_list li > p {
    display: none;
  }
  .job_box .occupation_box .occupation_list .link_box::after {
    display: none;
  }
  .job_box .occupation_box .occupation_list .link_box {
    margin-bottom: 0;
    border-radius: 30px 0px 0px 30px;
  }
  .job_box .occupation_box .occupation_list .link_box a {
    padding: 6px 12px;
    background-color: #006b48;
    color: #fff;
  }
  .job_box .occupation_box .occupation_list .link_box a .occupation_name {
    white-space: nowrap;
  }
  .job_box .occupation_box .occupation_list {
    flex-wrap: wrap;
    gap: 8px 8px;
  }
  .job_box .occupation_box .occupation_list li {
    width: fit-content;
  }
}

/*-----------------------------------

	worry_block

-----------------------------------*/
#worry_block {
  background: #fff;
  padding: 140px 0 110px;
}
#worry_block .ttl_box .h2_ttl {
  gap: 20px;
}
#worry_block .accordion-area {
  list-style: none;
  margin: 50px auto 0;
}
#worry_block .accordion-area .accordion-area_li {
  margin: 0 0 30px;
}
#worry_block .accordion-area .accordion-area_li .accordion-item {
  position: relative;
}
#worry_block .title {
  color: #000000;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #e8f2ef;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#worry_block .title::before {
  content: "Q";
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;

  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
  display: block;
  width: 65px;
  height: 100%;
  min-height: 70px;
  background: #006b48;
  color: #ffffff;
  text-align: center;
  line-height: 70px;
}
#worry_block .title__text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 42px;
  padding: 14px 75px 14px 20px;
  width: 1000px;
}
#worry_block .plus_ico {
  width: 38px;
  height: 38px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#worry_block .plus_ico:before {
  top: 48%;
  left: 7px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#worry_block .title.close .plus_ico:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#worry_block .plus_ico:after {
  top: 48%;
  left: 7px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#worry_block .title.close .plus_ico:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#worry_block .plus_ico:before,
#worry_block .plus_ico:after {
  position: absolute;
  content: "";
  width: 22px;
  height: 4px;
  background-color: #249d57;
  border-radius: 6px;
}
#worry_block .box {
  display: none;
  padding: 0px 0 20px;
}
#worry_block .box .box_content_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
#worry_block .box .box_content_left {
  padding-left: 36px;
  width: 682px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#worry_block .box .box_content_left__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 20px auto 0px;
  color: #ea5504;
}
#worry_block .box .box_content_left__title span {
  font-size: 40px;
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}
#worry_block .box .box_content_left__subtitle {
  margin-top: 10px;
  line-height: 1;
}
#worry_block .box .box_content_left__subtitle span {
  display: block;
  font-size: 30px;
  color: #ea5504;
  font-family: "Cabin", sans-serif;
  font-style: italic;
  font-weight: 700;
}
#worry_block .box .box_content_left__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  margin-top: 1rem;
}
#worry_block .box .box_content_left__voice {
  position: relative;
  background-color: #ea5504;
  margin: -5px auto 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: end;
  -ms-flex-pack: justify;
  justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#worry_block .box .box_content_left__voice span {
  position: absolute;
  top: -20px;
  left: 0;
}
#worry_block .box .box_content_left__voice img {
  max-width: 130px;
  position: absolute;
  left: 25px;
  top: 25px;
  border-radius: 10px;
}
#worry_block .box .box_content_left__voice__text {
  /* width: 458px; */
  width: calc(100% - 188px);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  position: relative;
  color: #fff;
  padding: 24px 26px 24px 0;
  border-radius: 4px;
  font-weight: 600;
}
#worry_block .box .box_content_left .add_box {
  width: calc(100% - 188px);
  margin-left: auto;
}
#worry_block .box .box_content_right {
  width: 305px;
  margin-top: 30px;
  margin-right: 40px;
}
#worry_block .box .box_content_right__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
#worry_block .box .box_content_right__alert {
  font-size: 12px;
  font-size: 1.2rem;
}
#worry_block .box .box_content_right__img_wrap {
  margin-bottom: 20px;
}
/* #worry_block .box .box_content_right__img.img_01 {
	width: 278px;
	height: 259px;
} */
#worry_block .box .box_content_right__caption {
  font-size: 10px;
  font-size: 1rem;
  line-height: 12px;
  font-weight: bold;
}
#worry_block .box .box_content_right__link {
  text-decoration: none;
  color: #000000;
  word-break: break-all;
  letter-spacing: -0.2px;
}
@media screen and (max-width: 980px) {
  #worry_block {
    padding: 50px 0 40px;
  }
  #worry_block .title::before {
    min-width: 55px;
    font-size: 28px;
    font-size: 2.8rem;
    min-height: 55px;
    line-height: 55px;
    height: auto;
  }
  #worry_block .title__text {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 14px 10px 14px 10px;
    letter-spacing: 0;
    line-height: 24px;
  }
  #worry_block .accordion-area {
    margin: 20px auto 0;
  }
  #worry_block .accordion-area .accordion-area_li {
    margin: 0 0 15px;
  }
  #worry_block .box .box_content_left__voice {
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
  }
  #worry_block .box .box_content_left__voice .text_box {
    width: 106px;
  }
  #worry_block .box .box_content_left__voice img {
    position: static;
  }
  #worry_block .box .box_content_left__voice__text {
    padding: 0;
    width: calc(100% - 126px);
  }
  #worry_block .box .box_content_left .add_box {
    width: 100%;
    margin-top: 10px;
  }
  #worry_block .box .box_content_right {
    width: 250px;
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 840px) {
  #worry_block .box .box_content_wrap {
    flex-direction: column;
    gap: 0px;
  }
  #worry_block .box .box_content_left {
    width: 100%;
    padding-left: 0;
  }
  #worry_block .box .box_content_left__title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  #worry_block .box .box_content_left__title span {
    font-size: 32px;
  }
  #worry_block .box .box_content_left__text {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 22px;
  }
  #worry_block .box .box_content_left__voice__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  #worry_block .plus_ico {
    width: 12px;
    height: 12px;
    right: 25px;
  }
  #worry_block .plus_ico:before,
  #worry_block .plus_ico:after {
    width: 12px;
    height: 2px;
  }
}

/*-----------------------------------

	support_block

-----------------------------------*/
#support_block {
  padding: 90px 0 80px;
  /* background: url(../img/index/support_bg_img.jpg); */
  position: relative;
}
#support_block .support_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/index/support_bg_img.jpg);
  background-image: image-set(
    url("../img/index/support_bg_img.webp") type("image/webp"),
    url("../img/index/support_bg_img.jpg") type("image/jpeg")
  );
  background-size: cover;
  z-index: -100;
}
#support_block .h2_ttl {
  text-align: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 50px;
}
#support_block .support_img_box {
  margin-bottom: 45px;
}
#support_block .btn_box {
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}
#support_block .btn_box .btn.consult_btn {
  width: 270px;
  padding-left: 52px;
}
#support_block .btn_box .btn.search_btn {
  width: 270px;
  border: none;
}
#support_block .btn_box .btn.search_btn::after {
  right: 7%;
}
#support_block p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 45px;
  line-height: 1.8;
}
#support_block p.note {
  font-size: 12px;
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  #support_block {
    margin-bottom: 60px;
    padding: 50px 0 65px;
  }
  #support_block .h2_ttl {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 640px) {
  #support_block p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  #support_block .support_img_box {
    margin-bottom: 15px;
  }
  #support_block .support_bg {
    background-image: image-set(
      url(../img/index/sp/support_bg_img.webp) type("image/webp"),
      url(../img/index/sp/support_bg_img.jpg) type("image/jpeg")
    );
  }
}
/*-----------------------------------

	support_block

-----------------------------------*/
#side_block {
  display: none;
}
@media screen and (max-width: 980px) {
  #side_block {
    display: block;
  }
}

/*-----------------------------------

	map animation

-----------------------------------*/
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
}

.bg .bg_wrap {
  position: absolute;
  width: 848px;
  top: 75px;
  left: 175px;
  transition: width 0.3s, top 0.3s, left 0.3s, transform 0.3s, opacity 1s;
  opacity: 0;
}
/* アニメーション崩れ対策で、loadedクラスが付与されたらopacityを1にする */
.loaded .bg .bg_wrap {
  opacity: 1;
}
.bg img {
  width: 100%;
}

.bg .bg_wrap.is-scrolling path {
  stroke: rgba(0, 107, 71, 0.5);
}
.bg .bg_wrap.in-search,
.bg .bg_wrap.in-news,
.bg .bg_wrap.in-worry {
  opacity: 0;
}
.bg .bg_wrap.in-worry path,
.bg .bg_wrap.in-support path {
  stroke: white;
}
@media screen and (min-width: 981px) {
  /* .bg .bg_wrap.in-about {
    width: 120vw;
    top: -32vw;
    left: -12vw;
    translate: 1 0;
    rotate: 30deg;
  } */
  /* .bg .bg_wrap.in-search { */
  /* width: 120vw;
    top: -32vw;
    left: -12vw;
    translate: 1 0;
    rotate: 30deg; */
  /* opacity: 0; */
  /* } */
  /* .bg .bg_wrap.in-news {
    opacity: 0;
  } */
  .bg .bg_wrap.in-worry {
    width: 70vw;
    top: -10vw;
    left: 15vw;
    translate: 0 0;
    rotate: 25deg;
    opacity: 0;
    transition: 1s;
  }
  .bg .bg_wrap.in-support {
    width: 70vw;
    top: -10vw;
    left: 15vw;
    translate: 0 0;
    rotate: 25deg;
    opacity: 1;
  }
}
@media screen and (max-width: 980px) {
  .bg .bg_wrap {
    width: 80%;
    top: 85px;
    left: 1vw;
  }
  .bg .bg_wrap.in-worry {
    width: 130vw;
    top: 36vw;
    left: -19vw;
    rotate: 8deg;
    opacity: 0;
    transition: 1s;
  }
  .bg .bg_wrap.in-support {
    width: 130vw;
    top: 36vw;
    left: -19vw;
    rotate: 8deg;
    opacity: 1;
  }
  .bg .bg_wrap.in-support path {
    stroke-width: 2px;
    stroke: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (max-width: 640px) {
  .bg .bg_wrap {
    width: 130%;
    top: 50px;
    left: -18vw;
  }
  .bg .bg_wrap.in-worry {
    width: 170vw;
    top: 10vw;
    left: -27vw;
    rotate: -10deg;
    opacity: 0;
  }
  .bg .bg_wrap.in-support {
    width: 170vw;
    top: 10vw;
    left: -27vw;
    rotate: -10deg;
    opacity: 1;
  }
  .bg .bg_wrap.in-support path {
    stroke-width: 2px;
    stroke: rgba(255, 255, 255, 0.7);
  }
}
