/* ===== 求人情報ページ ===== */

/* ---- Page Title ---- */
.recruit-main-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 24px 16px 0;
  margin: 0;
  color: #333;
}

/* ---- Hero Photo ---- */
.recruit-exterior-photo {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.recruit-exterior-photo img {
  width: 100%;
  max-height: 48rem;
  object-fit: contain;
  display: block;
}

/* ---- Main Container ---- */
.recruit-container {
  background-color: #EDEDED;
  min-height: calc(100vh - 200px);
  padding: 5rem 0 8rem;
}

.recruit-inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ---- Intro ---- */
.recruit-intro {
  background: #fff;
  border-radius: 1.6rem;
  padding: 4rem 5rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  color: #312F2E;
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  line-height: 2;
}

/* ---- Promise / Resolution Sections ---- */
.recruit-message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.recruit-message-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3.2rem 3.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.recruit-message-card.promise {
  border-top: 4px solid #A5387F;
}

.recruit-message-card.resolution {
  border-top: 4px solid #555;
}

.recruit-message-card h2 {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
}

.recruit-message-card.promise h2 {
  color: #A5387F;
  border-bottom: 1px solid #f3dded;
}

.recruit-message-card.resolution h2 {
  color: #555;
  border-bottom: 1px solid #e8e8e8;
}

.recruit-message-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recruit-message-list li {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
  color: #312F2E;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.recruit-message-card.promise .recruit-message-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #A5387F;
  font-weight: bold;
}

.recruit-message-card.resolution .recruit-message-list li::before {
  content: "！";
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ---- Job Table Section ---- */
.recruit-section-title {
  font-family: Inter_Regular, "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  color: #A5387F;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.recruit-section-title::after {
  content: "";
  display: block;
  width: 6rem;
  height: 3px;
  background: linear-gradient(90deg, #980264, #C15E9E);
  border-radius: 2px;
  margin: 1rem auto 0;
}

.recruit-table-wrap {
  background: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 5rem;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
}

.recruit-table th,
.recruit-table td {
  padding: 1.8rem 2.4rem;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}

.recruit-table th {
  background: #faf6f9;
  color: #A5387F;
  font-weight: 700;
  width: 22rem;
  white-space: nowrap;
  border-right: 3px solid #A5387F;
}

.recruit-table td {
  color: #312F2E;
}

.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
  border-bottom: none;
}

.recruit-table .job-type-label {
  display: inline-block;
  background: #f3dded;
  color: #A5387F;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  border-radius: 10rem;
  margin-right: 0.8rem;
  font-weight: bold;
}

/* ---- Store Listings (応募方法) ---- */
.recruit-apply-section {
  margin-bottom: 4rem;
}

.recruit-region {
  margin-bottom: 3.2rem;
}

.recruit-region-title {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, #980264, #C15E9E);
  padding: 1rem 2.4rem;
  border-radius: 0.8rem;
  margin-bottom: 1.6rem;
}

.recruit-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.recruit-store-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 2.4rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-top: 3px solid #A5387F;
}

.recruit-store-name {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
  color: #312F2E;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.recruit-store-manager {
  font-family: Inter_Regular, "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: #707070;
  margin-bottom: 0.4rem;
}

.recruit-store-tel {
  font-family: Inter_Regular, sans-serif;
  font-size: 1.5rem;
  color: #A5387F;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* ---- CTA ---- */
.recruit-cta {
  background: linear-gradient(135deg, #980264 0%, #C15E9E 100%);
  border-radius: 1.6rem;
  padding: 4rem 5rem;
  text-align: center;
  margin-top: 5rem;
}

.recruit-cta p {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

.recruit-cta-btn {
  display: inline-block;
  background: #fff;
  color: #A5387F;
  font-family: Inter_Regular, "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.4rem 5rem;
  border-radius: 10rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.recruit-cta-btn:hover {
  background: #f5e8f1;
}

/* ===== Responsive ===== */

@media screen and (max-width: 1080px) {
  .recruit-inner {
    padding: 0 2.5rem;
  }

  .recruit-store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .recruit-container {
    padding: 3rem 0 6rem;
  }

  .recruit-inner {
    padding: 0 1.6rem;
  }

  .recruit-exterior-photo img,
  .recruit-exterior-photo {
    height: 28rem;
    max-height: 28rem;
  }

  .recruit-exterior-catchcopy {
    font-size: 2rem;
  }

  .recruit-intro {
    padding: 2.4rem 2rem;
    font-size: 1.4rem;
    border-radius: 1.2rem;
  }

  .recruit-message-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .recruit-message-card {
    padding: 2.8rem 2.4rem;
  }

  .recruit-table th {
    width: auto;
    white-space: normal;
    min-width: 10rem;
  }

  .recruit-table th,
  .recruit-table td {
    padding: 1.4rem 1.6rem;
    font-size: 1.4rem;
  }

  .recruit-store-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .recruit-cta {
    padding: 3rem 2rem;
  }

  .recruit-cta p {
    font-size: 1.5rem;
  }

  .recruit-cta-btn {
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
  }
}
