@charset "UTF-8";
/* Zen Kaku Gothic Antique */
/* Montserrat */
/* 【ホバーアクション】下線が出てくる
  ・aタグにhov_lineをつける
  ・白線の場合hov_line_white
---------------------------------------------------------- */
.hov_line, .hov_line_white {
  position: relative;
  display: inline-block;
}
.hov_line::before, .hov_line_white::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #3D434E;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .hov_line:hover::before, .hov_line_white:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

.hov_line_white::before {
  background-color: #fff;
}

/* ==========================================================================//
//
// 共生会について
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
section:not(:first-of-type) {
  margin-top: 80px;
}
@media all and (min-width: 751px) {
  section:not(:first-of-type) {
    margin-top: 160px;
  }
}

/* 人生の“今”を充実した幸せのときに一生涯すべての時を大切にしたい
---------------------------------------------------------- */
.sec_slide .sec_ttl {
  text-align: center;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .sec_slide .sec_ttl {
    margin-bottom: 90px;
    line-height: 2;
  }
}
@media screen and (min-width: 751px) and (max-width: 767px) {
  .sec_slide .sec_ttl {
    font-size: 34px;
  }
}
.sec_slide #recruit_slide .splide__list .splide__slide:nth-child(even) {
  margin-top: 60px;
}
.sec_slide #recruit_slide .splide__list .splide__slide .image img {
  border-radius: 5px;
}
@media all and (min-width: 751px) {
  .sec_slide #recruit_slide .splide__list .splide__slide .image img {
    border-radius: 10px;
  }
}

/* 募集要項
---------------------------------------------------------- */
.sec_recruitment .sec_ttl {
  margin-bottom: 45px;
  font-size: 24px;
}
@media all and (min-width: 751px) {
  .sec_recruitment .sec_ttl {
    margin-bottom: 80px;
    font-size: 48px;
  }
}
.sec_recruitment .recruit_list .recruit_detail:not(:first-child) {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .sec_recruitment .recruit_list .recruit_detail:not(:first-child) {
    margin-top: 80px;
  }
}
.sec_recruitment .occupation_name {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #EF7B31;
}
@media all and (min-width: 751px) {
  .sec_recruitment .occupation_name {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.sec_recruitment .recruitment_list {
  padding: 32px 20px;
  background-color: #F8FBF9;
  border-radius: 15px;
}
@media all and (min-width: 751px) {
  .sec_recruitment .recruitment_list {
    padding: 64px 30px;
    border-radius: 30px;
  }
}
.sec_recruitment .recruitment_list .detail {
  padding: 26px 0 30px;
}
@media all and (min-width: 751px) {
  .sec_recruitment .recruitment_list .detail {
    padding: 36px 0 40px;
  }
}
.sec_recruitment .recruitment_list .detail:not(:first-child) {
  border-top: 1px solid #E3E7E5;
}
.sec_recruitment .recruitment_list .detail:last-child {
  padding: 26px 0 0;
}
@media all and (min-width: 751px) {
  .sec_recruitment .recruitment_list .detail:last-child {
    padding: 36px 0 0;
  }
}
.sec_recruitment .recruitment_list .detail:first-child {
  padding: 0 0 26px;
}
@media all and (min-width: 751px) {
  .sec_recruitment .recruitment_list .detail:first-child {
    padding: 0 0 36px;
  }
}
@media all and (min-width: 930px) {
  .sec_recruitment .recruitment_list .detail .txt_contents {
    margin: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sec_recruitment .recruitment_list .detail .txt_contents .item_name {
  margin-bottom: 10px;
  font-weight: bold;
}
@media all and (min-width: 930px) {
  .sec_recruitment .recruitment_list .detail .txt_contents .item_name {
    margin-bottom: 0;
    width: 20%;
  }
}
@media all and (min-width: 930px) {
  .sec_recruitment .recruitment_list .detail .txt_contents .item_detail {
    width: 80%;
  }
}

/* お問い合わせ
---------------------------------------------------------- */
.sec_contact .contact_list .detail {
  padding: 25px 0;
  border-top: 1px solid #D0D3CE;
}
@media all and (min-width: 820px) {
  .sec_contact .contact_list .detail {
    padding: 35px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec_contact .contact_list .detail:last-child {
  border-bottom: 1px solid #D0D3CE;
}
.sec_contact .contact_list .detail .name {
  margin-bottom: 10px;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .sec_contact .contact_list .detail .name {
    font-size: 18px;
  }
}
@media all and (min-width: 820px) {
  .sec_contact .contact_list .detail .name {
    margin-bottom: 0;
  }
}
.sec_contact .contact_list .detail .means {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1.4;
}
.sec_contact .contact_list .detail .means .means_name {
  padding-right: 15px;
  display: block;
  font-size: 15px;
}
@media all and (min-width: 751px) {
  .sec_contact .contact_list .detail .means .means_name {
    padding-right: 15px;
    font-size: 20px;
  }
}
.sec_contact .contact_list .detail .means .number {
  font-size: 28px;
}
@media all and (min-width: 751px) {
  .sec_contact .contact_list .detail .means .number {
    font-size: 39px;
  }
}
/*# sourceMappingURL=recruit.css.map */