@charset "UTF-8";
/* ========== recruit2 ========== */ :root {
  --green: #2f6b14;
  --green-dark: #224f0c;
  --green-deep: #183e08;
  --gold: #b98632;
  --brown: #4d2d18;
  --cream: #fbf8f1;
  --cream-2: #f5efe3;
  --text: #211b17;
  --muted: #6b625a;
  --line: #ded7ca;
  --white: #fff;
  --shadow: 0 7px 22px rgba(73, 50, 31, .09);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text);
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
#recruit2 {
  background-color: #fefaf5;
  line-height: 1.75;
  letter-spacing: .015em;	
}
.recruit2_title {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1%;
}
.recruit2_title img {
	width: 100%;
	height: auto;
}
.quick-points {
  padding: 0 0 48px;
  background: #fffdf9;
}
.point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.point-card {
  min-height: 200px;
  margin-top: -12px;
  background: #fff;
  border: 1px solid #ebe4d8;
  border-radius: 9px;
  box-shadow: var(--shadow);
  padding: 27px 18px 22px;
  text-align: center;
}
.point-icon {
  width: 95px;
  height: 90px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  color: var(--green);
}
.point-card h2 {
  margin: 3px 0 11px;
  color: #25571b;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}
.point-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.details-section {
  padding: 0 0 22px;
  /*background: linear-gradient(#fffdf9, #faf6ef);*/
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.detail2-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
}
.detail-card, .profile-card, .message-card {
  background: #fff;
  border: 1px solid #ebe4d8;
  border-radius: 9px;
  box-shadow: var(--shadow);
  padding: 20px 24px 24px;
}
.detail-card {
  min-height: 310px;
}
.section-title {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 3px solid var(--line);
  margin-bottom: 17px;
}
.section-title span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #42821d, #1b5107);
  font-size: 19px;
  font-weight: 900;
  flex: 0 0 auto;
}
.section-title h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
.check-list, .round-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .round-list li {
  position: relative;
  padding-left: 24px;
  margin: 7px 0;
  font-weight: 700;
  font-size: 16px;
}
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 2px;
  top: .78em;
}
.salary-card {
  display: flex;
  flex-direction: column;
}
.salary-box {
  border: 1px solid #d7c39e;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 3px;
  text-align: center;
  flex: 1;
  background-color: #fcf9f2;
}
.salary-head {
  margin: 0;
  padding: 14px 10px;
  background: linear-gradient(90deg, #376d10, #2a650b);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}
.salary-copy {
  margin: 26px 10px 12px;
  font-size: 20px;
  font-weight: 900;
}
.salary-amount {
  margin: 0 10px 18px;
  font-size: 18px;
  font-weight: 900;
}
.salary-amount strong {
  color: var(--gold);
  font-size: 36px;
  line-height: 0.5;
}
.salary-amount b {
  color: var(--gold);
  font-size: 21px;
}
.appeal-card {
  min-height: 310px;
}
.appeal-grid {
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.appeal-item {
  min-height: 155px;
  padding: 6px 12px;
  text-align: center;
  border-right: 1px dotted #b9aa93;
}
.appeal-item:last-child {
  border-right: 0;
}
.appeal-item p {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 900;
  margin: 12px 0 0;
}
.wide-section {
  padding: 0 0 22px;
  /*background: #faf6ef;*/
}
.profile-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.profile-content {
	min-height: 220px;
	display: grid;
	grid-template-columns: 1fr 280px;
	align-items: end;
	padding-bottom: 30px;
	background-image: url("../img/recruit2/bk_rec2_01.png");
	background-repeat: no-repeat;
	background-position: bottom right;
}
.round-list li {
  font-size: 16px;
}
.round-list li::before {
  content: "●";
  color: var(--green);
  position: absolute;
  left: 0;
  top: 0;
}
.message-card {
  min-height: 300px;
  overflow: hidden;
}
.message-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: center;
  background-image: url("../img/recruit2/bk_rec2_02.png");
  background-repeat: no-repeat;
  background-position: bottom right;
}
.message-content h3 {
  color: var(--green);
  font-size: 27px;
  margin: 5px 0 5px;
}
.message-content p {
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 400;
}
@media (max-width: 1050px) {
  .point-card {
    min-height: 235px;
  }
  .appeal-item {
    padding-inline: 7px;
  }
}
@media (max-width: 860px) {
	
	.page h2 {
		border-left: none;
	}
	.page h2 span {
	}	
  .point-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .point-card {
    margin-top: 0;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail2-grid {
    grid-template-columns: 1fr;
  }	
  .detail-card {
    min-height: auto;
  }
  .profile-content {
    grid-template-columns: 1fr 220px;
	background-image: url("../img/recruit2/bk_rec2_01smp.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
  }
  .message-content {
    grid-template-columns: 1fr 230px;
  background-image: url("../img/recruit2/bk_rec2_02smp.png");
  background-repeat: no-repeat;
  background-position: bottom right;
	background-size: contain;	  
  }
}
@media (max-width: 620px) {
  .point-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .point-card {
    min-height: auto;
    padding: 20px;
  }
  .point-icon {
    height: 70px;
  }
  .detail-card, .profile-card, .message-card {
    padding: 16px;
  }
  .section-title h2 {
    font-size: 21px;
  }
  .check-list li, .round-list li {
    font-size: 14px;
  }
  .appeal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .appeal-item {
    border: 1px solid #eee6da !important;
    border-radius: 8px;
    min-height: 135px;
  }
  .profile-content, .message-content {
    grid-template-columns: 1fr;
  }
  .profile-image, .handshake-image {
    width: 200px;
    margin: auto;
    justify-self: center;
  }
}