/* =============================================
   DAISO Global - job-detail.css
   ============================================= */

/** common **/
body {
  background: url("../images/arrows_bg.jpg") no-repeat top left/75%;
}

/* --- Page Header --- */
.jd-page-header {
  padding: 180px 0 80px;
}

.jd-page-company {
  font-size: 1.625rem;
  font-weight: 700;
  color: #4c4c4c;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.jd-page-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 5px;
  line-height: 1.2;
  margin-bottom: 0;
}

/* --- Job Detail Section --- */
.jd-section {
  padding: 0 0 120px;
}

/* --- Title Row --- */
.jd-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.jd-job-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.jd-job-title::before {
  content: "";
  width: 20px;
  height: 4px;
  background: var(--pink);
  flex-shrink: 0;
}

/* --- Apply Button --- */
.btn-jd-apply {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  padding: 16px 56px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  min-width: 350px;
}

.btn-jd-apply:hover {
  background: var(--pink-dark);
  color: #fff;
}

/* --- Detail Table --- */
.jd-table {
  border: 1px solid #ddd;
  margin-bottom: 60px;
}

.jd-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.jd-row:last-child {
  border-bottom: none;
}

.jd-label {
  width: 180px;
  min-width: 180px;
  padding: 28px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  border-right: 1px solid #ddd;
  background: #f7f7f7;
  color: #4c4c4c;
}

.jd-content {
  flex: 1;
  padding: 28px 32px;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  line-height: 1.9;
}

/* --- Bullet List --- */
.jd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jd-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.jd-list li:last-child {
  margin-bottom: 0;
}

.jd-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #cccccc;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* --- Bottom Apply --- */
.jd-apply-wrap {
  text-align: center;
  padding: 20px 0 40px;
}

/* --- Responsive --- */
@media (max-width: 991px) {

  /* --- Apply Button --- */
  .btn-jd-apply {
    min-width: auto;
    width: 80%;
  }
}

@media (max-width: 767px) {

  /* --- Job Detail Section --- */
  .jd-section {
    padding: 0 0 60px;
  }

  .jd-page-header {
    padding: 120px 0 40px;
  }

  .jd-page-company {
    margin-bottom: 0.75rem;
  }

  .jd-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .jd-row {
    flex-direction: column;
  }

  .jd-label {
    width: 100%;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 16px 20px;
    text-align: center;
  }

  .jd-content {
    padding: 20px;
  }
}