.page-pan {
  position:absolute;
  bottom: 10px;
}

/*リクルートトップ*/

.recruit-top {
  position: relative;
  display: flex;
  height: 200px;
}
.recruit-top::before {
  position: absolute;
  background-image: url(../img/recruitheader1.jpg);
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  width: 50%;
  height: 100%;
  left:0;
  top: 0;
  z-index: -1;
}

.recruit-top::after {
  position: absolute;
  background-image: url(../img/recruitheader2.jpg);
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  width: 50%;
  height: 100%;
  right:0;
  top: 0;
  z-index: -1;
}

.recruit-top-message {
  padding: 10px 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg,transparent, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.8) 80%, transparent);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.recruit-top-message h2 {
  font-size: 3rem;
}

/*採用メニュー*/

.recruit-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding:40px 0;
  margin-bottom: 60px;
}

.recruit-menu a {
  padding: 40px 0;
  border-radius: 15px;
  max-width: 220px;
  width: 100%;
}

/*募集拠点一覧*/


.recruit-office-list h2 {
  margin-bottom: 40px;
  text-align: center;
}


.recruit-office-list {
  margin-bottom: 100px;
}

.recruit-office-ex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 30px;
}

.recruit-office-ex-l {
  width: 55%;
}

.recruit-office-ex-l dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.recruit-office-ex-l dl:last-of-type {
  margin-bottom: 30px;
}

.recruit-office-r {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.recruit-office-list li h3 {
  background-color: #FFFFE6;
  border: 1px solid #707070;
  border-radius: 15px;
  padding: 10px;
  padding-left: 40px;
  margin-bottom: 30px;
  font-size: 2.2rem;
  position: relative;
}

.recruit-office-list li h3::before {
  position: absolute;
  content: '\f3c5';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.recruit-office-list li .btn1 {
  height: 50px;
  max-width: 200px;
  
  margin: 0 auto;
  background-color: #FFCC99;
}

/*募集内容*/

.recruit-information {
  margin-bottom: 80px;
}

.recruit-information h2 {
  text-align: center;
  margin-bottom: 40px;
}

.recruit-information-menu {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.recruit-information-menu a {
  background-color: #FFFFE6;
  border: 1px solid #707070;
  padding: 5px;
  max-width: 360px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 60px;
  margin-bottom: 20px;
  padding: 0 45px;
}

.recruit-information-menu a::before{
  content:'\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.recruit-info-ex {
  padding-bottom: 100px;
}

.recruit-info-ex h3 {
  border-bottom: 2px solid #707070;
  margin-bottom: 20px;
}

.recruit-info-ex dl {
  max-width: 1000px;
  width: calc(100% - 10px);
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}

.recruit-info-ex dl:last-of-type {
  margin-bottom: 40px;
}

.recruit-info-ex dt,
.recruit-info-ex dd {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.recruit-info-ex dt {
  width: 100px;
  text-align: center;
  background-color: #F7F7F7;
  
}

.recruit-info-ex dd {
  flex: 1;
  text-align: left;
  justify-content: flex-start;
}

.recruit-info-ex a {
  max-width: 400px;
  margin: 0 auto;
}
/*業務について*/
.recruit-about-work {
  background-color: rgba(255, 255, 230, 0.8);
  text-align: center;
  padding-top: 60px;
}

.recruit-about-work .wrapper {
  position: relative;
  padding-bottom: 80px;
}

/*
.recruit-about-work .wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #FFFFE6;
}
*/

.recruit-about-work .wrapper::after {
  background-image: url(../img/recruitworkback.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
}

.recruit-about-work h2 {
  margin-bottom: 60px;
}

.recruit-about-work-img {
  display: flex;
}

.recruit-about-work-img p {
  flex: 1;
}


/*スマホ*/
@media (max-width: 768px) {
  /*採用メニュー*/
  .recruit-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding:40px 0;
  }
  
  .recruit-menu a {
    padding: 20px 0;
    border-radius: 15px;
    max-width: 220px;
    width: calc(100% - 10px);
    margin: 0 5px 20px;
  }

  .recruit-information-menu a {
    padding: 0 40px;
  }
  /*拠点リスト*/
  .recruit-office-ex-l {
    width: 100%;

  }
	
	.recruit-office-list ul li:not(:last-of-type) {
		margin-bottom: 90px;
	}

	.recruit-office-list li h3 {
		font-size:1.6rem;
	}
	
  .recruit-office-r {
    width: 100%;
  }
	
	.recruit-top-message h2 {
		font-size: 2.6rem;
	}
}