@charset "UTF-8";
/*====================================
　早見表
  $conts-width
  $color-yellow  $color-blue
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width
  flex-column  flex-center
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)
  fs(max,1000～768px,768～480px,480～320px,min)  fs2(max,min)
  mt(max,min) mb mtb  pt pb ptb

====================================*/
/*====================================

/*----------------------------------
  Structure
----------------------------------
0. 共通
1. トップ
  1.1	メインイメージ
  1.2 トップナビ
2. 
3. 

====================================*/
/*----------------------------------
	0. 共通
------------------------------------*/
.box-style01 {
  border-right: solid 3px #231815;
  border-left: solid 3px #231815;
  background-color: #fff;
}
.box-style01 h3 {
  font-size: 22px;
  background-color: #ffe960;
  padding: 0.5em 1em;
}
.box-style01 p {
  width: 75%;
  padding: 3% 4%;
}
@media (max-width: 480px) {
  .box-style01 p {
    width: 100%;
  }
}

.balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 14px 20px;
  min-width: 120px;
  max-width: 100%;
  background: #FFF;
  border: solid 3px #231815;
  box-sizing: border-box;
}
.balloon::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #231815;
  z-index: 1;
}

/*　0.1　page-title
------------------------------------*/
.page-title {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
}
.page-title h2 {
  position: relative;
}
.page-title__sub {
  display: inline-block;
  position: absolute;
  left: 0;
  aspect-ratio: 9/4;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  background: url(../images/title-flag.svg) no-repeat center center;
  background-size: cover;
  padding: 12px 0 0 20px;
  transform: rotate(-4deg);
}
.page-title__main {
  display: inline-block;
  text-align: center;
  padding: 74px 60px 0;
  font-weight: 700;
}

.page-nav {
  padding: 30px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
.page-nav a {
  display: inline-block;
  color: #231815;
  font-size: clamp(16px, 2.083vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.3em 0 0.3em 0.8em;
  background: url(../images/icon-nav02.svg) no-repeat left center;
  background-size: auto 60%;
}
@media screen and (max-width: 768px) {
  .page-nav a {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}

/*　0.2　page-bottom
------------------------------------*/
.page-bottom {
  padding: 80px 4%;
}

/*　0.3　アニメーション
------------------------------------*/
.scroll-fade {
  transform: translate3d(0, -10px, 0);
  transition: 1s;
  opacity: 0;
}

.scroll-fade.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*----------------------------------
	1. トップ
------------------------------------*/
.mainimage__text {
  margin-top: 60px;
  text-align: center;
  font-size: clamp(20px, 2.604vw, 26px);
  line-height: 2;
  letter-spacing: 0.24em;
  line-height: 3;
  background: url(../images/mainimage-bottom.png) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .mainimage__text {
    font-size: clamp(16px, 3.333vw, 20px);
  }
}
.mainimage__text span {
  color: #c1272d;
}
.mainimage__text span::before, .mainimage__text span::after {
  width: 2px;
  height: 28px;
  content: "";
  background-color: #231815;
  display: inline-block;
}
.mainimage__text span::before {
  margin-right: 1em;
  transform: rotate(-30deg);
}
.mainimage__text span::after {
  margin-left: 1em;
  transform: rotate(30deg);
}

.wp-block-post .wp-block-group {
  padding: 0 !important;
}

@media (max-width: 600px) {
  .top-post-sp-width {
    max-width: 330px;
    width: 90%;
    margin: 0 auto;
  }
}

/*----------------------------------
	2.　弊社のサポート
------------------------------------*/
@media (max-width: 480px) {
  .staff-box04, .support-box04, .support-box03, .support-box02, .support-box01 {
    padding-bottom: 70px;
    background-size: auto 85px !important;
  }
}

.support-box04 h3::before, .support-box03 h3::before, .support-box02 h3::before, .support-box01 h3::before {
  font-size: 35px;
  font-weight: 700;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 0.3em;
}

.support-box01 {
  background: url(../images/support-img01.png) no-repeat right 3% bottom #fff;
}
.support-box01 h3::before {
  content: "1";
}
.support-box02 {
  background: url(../images/support-img02.png) no-repeat right 8% bottom #fff;
}
.support-box02 h3::before {
  content: "2";
}
.support-box03 {
  background: url(../images/support-img03.png) no-repeat right 4% bottom #fff;
}
.support-box03 h3::before {
  content: "3";
}
.support-box04 {
  background: url(../images/support-img04.png) no-repeat right 3% bottom #fff;
}
.support-box04 h3::before {
  content: "4";
}

@media (max-width: 480px) {
  .staff-box03, .staff-box02, .staff-box01 {
    padding-bottom: 70px;
    background-size: auto 85px !important;
  }
}

.staff-box01 {
  background: url(../images/staff-img01.png) no-repeat right 3% bottom #fff;
}
.staff-box02 {
  background: url(../images/staff-img02.png) no-repeat right 4% bottom #fff;
}
.staff-box03 {
  background: url(../images/staff-img03.png) no-repeat right 4% bottom 1em #fff;
}
.staff-box04 {
  background: url(../images/staff-img04.png) no-repeat right 3% bottom #fff;
}

/*　2.1 よくある質問
------------------------------------*/
.a-text, .q-text {
  padding-left: 70px;
  min-height: 75px;
  display: flex;
  align-items: center;
  border-radius: 15px;
}

.q-text {
  font-weight: 700;
  background: url(../images/icon-q.png) no-repeat left 5px top 5px #fff;
}

.a-text {
  background: url(../images/icon-a.png) no-repeat left 7px top 7px #fff;
  padding-top: 10px;
  padding-right: 35px;
  padding-bottom: 6px;
  margin-bottom: 1.5em;
}
@media (max-width: 480px) {
  .a-text {
    padding-right: 15px;
  }
}

.clickable {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
}
.clickable:before, .clickable:after {
  content: "";
  position: absolute;
  right: 20px;
  width: 3px;
  height: 20px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.clickable:after {
  transform: rotate(90deg);
}

.clickable.open::before {
  display: none;
}

.toggleable {
  display: none;
}

.a-text.toggleable {
  min-height: auto;
}

/*----------------------------------
	3.　特定技能人材支援とは
------------------------------------*/
/*----------------------------------
	4.　外国人の採用
------------------------------------*/
.recruit-cost {
  margin-bottom: 30px;
}
.recruit-cost > div {
  padding: 1em 1.5em;
  font-weight: 500;
}
.recruit-cost__title {
  font-size: clamp(16px, 2.083vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1em 0.7em !important;
}
@media screen and (max-width: 768px) {
  .recruit-cost__title {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}
.recruit-cost__price {
  font-size: 20px;
  font-weight: 700 !important;
  padding: 1em 0.7em !important;
}
.recruit-cost p {
  margin: 0;
  display: inline-block;
}
.recruit-cost p code {
  font-size: 80%;
}

.mendan-box__title {
  border: solid 1px #231815;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mendan-box__title p {
  margin: 0;
}
.mendan-box__text {
  background-color: #fff;
  padding: 1em 1.5em;
  margin: 0;
}

/*----------------------------------
	5.　業界別人材紹介
------------------------------------*/
.staff_list__box {
  background-color: #f9f6f4;
}
.staff_list__box a {
  text-decoration: none;
  color: #231815;
}
.staff_list__status--free, .staff_list__status--active {
  text-align: center;
  padding: 0.3em 0;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
.staff_list__status--free {
  background-color: #fbb03b;
}
.staff_list__status--active {
  background-color: #2b8e4c;
}
.staff_list__date {
  text-align: center;
  color: #fff;
  padding: 0.3em 0;
  background-color: #6f84bf;
  font-size: 16px;
  font-weight: 500;
}
.staff_list__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 0.4em 0;
  border-bottom: solid 1px #000;
  background-color: #fff;
}
.staff_list__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.staff_list__profile {
  font-size: 14px;
  padding: 0.3em 1em;
}
.staff_list__middle {
  border-bottom: dotted 1px #000;
  background-color: #fff;
}
.staff_list__content {
  padding: 0.5em 1em;
}
.staff_list__content .title {
  color: #6f84bf;
  text-align: center;
  margin-bottom: 0.5em;
  font-size: 14px;
}

.staff-more-btn {
  text-align: center;
  margin: 10px 0 0;
}
.staff-more-btn a {
  display: inline-block;
  border: 3px solid #000;
  border-radius: 6px;
  background-color: #fff;
  font-weight: 700;
  padding: 4px 5px;
  width: 150px;
  margin: 0 4px;
  color: #000;
}

/* 5.1　特定技能「介護」
------------------------------------*/
.kaigo-index {
  background-color: #fff;
  padding: 2% 3%;
}
.kaigo-index h3.h-style02 {
  line-height: 1;
  margin-bottom: 0.7em;
}
.kaigo-index ul li {
  margin-bottom: 0.6em;
}
.kaigo-index ul li a {
  background: url(../images/icon-nav02.svg) no-repeat left center;
  background-size: auto 70%;
  padding-left: 1em;
  color: #231815;
  font-size: clamp(16px, 2.083vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .kaigo-index ul li a {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}

.kaigo-box {
  padding: 40px 0;
}
.kaigo-box h3 {
  font-size: clamp(20px, 2.604vw, 26px);
  line-height: 2;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-bottom: 1em;
  background-color: #ffe960;
  padding: 0 0.5em;
  border-left: solid 3px #231815;
  border-right: solid 3px #231815;
}
@media screen and (max-width: 768px) {
  .kaigo-box h3 {
    font-size: clamp(16px, 3.333vw, 20px);
  }
}
.kaigo-box h4 {
  font-weight: 700;
  font-size: clamp(18px, 2.344vw, 21px);
  margin-bottom: 0.7em;
}
@media screen and (max-width: 768px) {
  .kaigo-box h4 {
    font-size: clamp(14px, 2.917vw, 18px);
  }
}
.kaigo-box p {
  margin-bottom: 2em;
}

/*----------------------------------
	6.　会社案内
------------------------------------*/
.greeting-name {
  text-align: center;
  font-size: clamp(16px, 2.083vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .greeting-name {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}/*# sourceMappingURL=contents.css.map */