﻿/* ──────────────────────────────────────
   9. Recruitment セクション（改訂版）
────────────────────────────────────── */
/* セクションそのものは auto 伸長＆はみ出し隠し */
.recruit {
 height: auto !important;
 overflow: hidden;
 padding-bottom: 0;
}

.recruit__text {
 max-width: 680px;
 margin: 0 60px 40px;
 line-height: 1.7;
 font-size: 17px;
}

.view-more-recruit {
}

.section-title-recruit {
}

/* ギャラリーを flexbox に */
.recruit__gallery {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 overflow: hidden;
 max-height: calc(300px * 3);
 margin: 0 0 0;
}

/* img 周りはそのままでOK */
.recruit__gallery img {
 height: auto;
 width: 25%;
 flex-shrink: 0;
 object-fit: cover;
}

/* タブレット */
@media (max-width: 767px) {
 .recruit__text {
  max-width: unset;
  font-size: 16px;
  margin: 0 30px 40px;
 }
}

/* スマホ */
@media (max-width: 600px) {
 .recruit__text {
  font-size: min(15.7px, 4.18vw);
  margin: 0 20px 30px;
 }
 .recruit__gallery {
  max-height: 74vw;
 }
 .recruit__gallery img {
  width: 50%;
 }
}
