/* recruit.css - RECRUITページ専用スタイル */
main {
  margin-top: 0px;
  padding-top: 0;
}
.recruit-hero {
  position: relative;
  width: 100%;
  height: 48vw;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: transform;
  background-image: url("/wp-content/themes/dlfl/page/img/recruit_eyecatch.jpg");
  pointer-events: none;
  /* background-color: rgba(255,0,0,0.1); // debug用 */
}
.recruit-hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.recruit-hero-text {
  max-width: 80vw;
  width: 480px;
  height: auto;
  display: block;
}

.recruit-title-section {
  background: #fffdf9;
  padding: 48px 0 0 0;
}
.recruit-title-section .section-header {
  text-align: left;
}
.recruit-title-section .main-title,
.recruit-title-section .sub-title {
  text-align: left;
}

.recruit-intro-section {
  padding: 80px 0 80px 0;
}
.recruit-intro-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: nowrap;
  margin-bottom: 80px;
}
.recruit-intro-row:last-child {
  margin-bottom: 0;
}
.recruit-intro-row.reverse {
  flex-direction: row-reverse;
}
.recruit-intro-text {
  flex: 1 1 50%;
  color: #6a5647;
  font-size: 1.08rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 2vw;
}
.recruit-intro-text h3 {
  color: #6a5647;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0;
}
.recruit-intro-text p {
  color: #6a5647;
  font-size: 1.08rem;
  margin: 0;
  line-height: 2;
}
.recruit-intro-imgs {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.recruit-intro-img {
  width: 90%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(236, 159, 52, 0.08);
  margin: 0 auto;
}

.recruit-link-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: url("/wp-content/themes/dlfl/page/img/recruit_bg_engineer.jpg")
    center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}
.recruit-link-section .row,
.recruit-link-section .contents-inner,
.recruit-inner,
.recruit-link-section .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.recruit-btn {
  margin: 0 auto;
}

.recruit-jobs-section {
  padding: 64px 0 80px 0;
}
.recruit-jobs-heading {
  font-size: 1.3em;
  color: #f4930b;
  font-weight: 700;
  text-align: center;
}
.recruit-job-service {
  color: #6a5647;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.recruit-job-type {
  color: #4f4f4f;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}
.recruit-jobs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

@media (max-width: 900px) {
  .recruit-jobs-list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-left: auto;
    margin-right: auto;
  }
}
.recruit-job-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 15px rgba(79, 52, 14, 0.15);
  width: 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 40px 32px;
  box-sizing: border-box;
  position: relative;
}
.recruit-job-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
.recruit-job-media {
  width: 100%;
  margin: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
}
.recruit-job-media iframe,
.recruit-job-media img {
  width: 100%;
  min-height: 310px;
  max-height: 320px;
  display: block;
  background: #fff;
  border: none;
}
.recruit-job-link {
  background: linear-gradient(93.99deg, #ffc26e 5.12%, #f4930b 82.33%);
  color: #fff;
  border-radius: 30px;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.03em;
  border: none;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 50%;
  max-width: 260px;
  height: 46px;
  line-height: 46px;
  margin: 32px auto 0 auto;
  transition: background 0.2s;
}
.recruit-job-link:hover {
  opacity: 0.8;
}

.recruit-job-link-blue {
  background: linear-gradient(93.99deg, #6eb4ff 5.12%, #0b70f4 82.33%);
  color: #fff;
}

.recruit-job-link-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}

@media (max-width: 900px) {
  .recruit-hero {
    height: 38vw;
    min-height: 180px;
    max-height: 320px;
  }
  .recruit-intro-section {
    padding: 40px 0 40px 0;
  }
  .recruit-intro-row,
  .recruit-intro-row.reverse {
    flex-direction: column !important;
    gap: 32px;
    margin-bottom: 48px;
  }
  .recruit-intro-imgs,
  .recruit-intro-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
    align-items: center;
  }
  .recruit-intro-text {
    align-items: flex-start;
    padding: 0 4vw;
  }
  .recruit-intro-img {
    width: 100%;
    max-width: 100vw;
  }
  .recruit-intro-text h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .recruit-inner-message {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 736px) {
  .recruit-hero {
    height: 560px;
    min-height: 460px;
    max-height: 620px;
  }
  .recruit-title-section,
  .recruit-intro-section,
  .recruit-link-section,
  .recruit-jobs-section {
    padding-left: 0;
    padding-right: 0;
  }
  .recruit-intro-row,
  .recruit-intro-row.reverse {
    margin-bottom: 32px;
  }
  .recruit-intro-text {
    font-size: 0.98rem;
    padding: 0 2vw;
  }
  .recruit-intro-text h3 {
    font-size: 1.1rem;
  }
  .recruit-intro-img {
    width: 100%;
    max-width: 100vw;
  }

  .section-divider-title {
    font-size: 1rem;
    margin: 32px 0 16px 0;
  }
  .section-divider-title::before,
  .section-divider-title::after {
    width: 20px;
    margin: 0 4px;
  }
  .recruit-inner-message {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
}

.section-divider-title {
  position: relative;
  text-align: center;
  color: #6a5647;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 64px 0 40px 0;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
}
.section-divider-title::before,
.section-divider-title::after {
  position: relative;
  display: inline-block;
  content: "";
  background: #6a5647;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.section-divider-title::before {
  transform: rotate(-30deg);
}
.section-divider-title::after {
  transform: rotate(30deg);
}
@media (max-width: 900px) {
  .section-divider-title {
    font-size: 1.1rem;
    margin: 40px 0 24px 0;
  }
  .section-divider-title::before,
  .section-divider-title::after {
    width: 40px;
    margin: 0 10px;
  }
}

@media (max-width: 736px) {
  .section-divider-title {
    font-size: 1rem;
    margin: 32px 0 16px 0;
  }
  .section-divider-title::before,
  .section-divider-title::after {
    width: 2px;
    margin: 0 4px;
  }
}
.recruit-section-note {
  color: #4e4e4e;
  text-align: center;
  font-size: 1em;
  margin: 16px 0 32px 0;
}

.recruit-inner-message {
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .recruit-inner-message {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
}
