.about {
  background-color: #fbf4de;
  color: #2c2c2c;
}
.about_body {
  margin: 0 auto;
  padding: 70px 0 100px;
}
@media screen and (min-width: 768px) {
  .about_body {
    display: flex;
    justify-content: center;
    padding: 70px 0 100px;
  }
}
.about_main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about_main {
    max-width: 1100px;
  }
}

.recruit_fv_inner_about {
  justify-content: center;
  max-width: 375px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .recruit_fv_inner_about {
    max-width: none;
    padding: 0;
  }
}
.recruit_fv_inner_about .recruit_title {
  width: auto;
  max-width: 100%;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .cards {
    flex-direction: row;
    gap: 20px;
  }
}
.cards_item {
  flex: 1;
  min-width: 0;
}

.card {
  position: relative;
  display: block;
  min-height: 135px;
  border-radius: 20px;
  background-color: #a5a54d;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .card {
    min-height: 212px;
  }
}
.card_tour {
  background-image: url("../img/about/card_tour.png");
}
.card_numbers {
  background-image: url("../img/about/card_numbers.png");
}
.card_smile {
  background-image: url("../img/about/card_smile.png");
}
.card_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: 28px 20px 20px;
}
@media screen and (min-width: 768px) {
  .card_inner {
    justify-content: space-between;
    padding: 62px 36px 24px;
    min-height: 212px;
  }
}
.card_txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card_ja {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .card_ja {
    font-size: 21px;
  }
}
.card_en {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.card_arrow {
  align-self: flex-end;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  margin-top: 24px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .card_arrow {
    width: 44px;
    height: 44px;
    right: 24px;
    bottom: 24px;
  }
}
.card_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #a5a54d;
}