@import url('/static/brand/css/home.css?v=20260822-recruitment1');

/* Figma recruitment: PC 878:4309 / H5 896:5310 */
.join-page-body { --join-accent: #f68804; --join-accent-rgb: 246, 136, 4; color: #fff; background: #0a0a0a; }
.join-page { overflow: hidden; background: #0a0a0a; }
.recruitment-page { position: relative; min-height: 100vh; background: #0a0a0a; }

.join-hero {
  position: relative;
  width: min(1480px, calc(100% - 80px));
  aspect-ratio: 1480 / 636;
  margin: 24px auto 0;
  overflow: hidden;
  background: #111;
}
.join-hero .brand-hero-carousel,
.join-hero .brand-hero-track,
.join-hero .brand-hero-slide,
.join-hero .brand-hero-slide > a,
.join-hero picture,
.join-hero .brand-hero-fallback { width: 100%; height: 100%; }
.join-hero .brand-hero-carousel { position: relative; overflow: hidden; }
.join-hero .brand-hero-track { display: flex; transition: transform .55s ease; }
.join-hero .brand-hero-slide { flex: 0 0 100%; }
.join-hero .brand-hero-slide > a,
.join-hero picture { display: block; }
.join-hero img { display: block; width: 100%; height: 100%; object-fit: cover; }

.join-apply-section { padding: 80px 0 220px; background: #0a0a0a; }
.join-apply-shell { width: min(1484px, calc(100% - 80px)); margin: 0 auto; }
.join-section-title {
  position: relative;
  width: max-content;
  min-width: 219px;
  min-height: 80px;
  margin: 0 0 64px;
  padding-left: 6px;
}
.join-section-title h1,
.join-section-title p { position: relative; z-index: 1; }
.join-section-title h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.015em;
}
.join-section-title p {
  margin: 10px 0 0;
  color: var(--join-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 3px;
}

.join-form {
  width: 100%;
  min-height: 555px;
  padding: 80px 220px;
  border: 1px solid #2a2a2a;
  border-radius: 120px;
  background: #1a1a1a;
}
.join-form-title {
  margin: 0 0 40px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
}
.join-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 40px;
}
.join-fields label {
  min-width: 0;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}
.join-fields label > span {
  display: block;
  min-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.join-fields label b { color: var(--join-accent); font-weight: 500; }
.join-fields input,
.join-fields select,
.join-fields textarea,
.join-select-trigger {
  width: 100%;
  height: 62px;
  margin-top: 16px;
  padding: 0 20px;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  outline: 0;
  color: #fff;
  background: #222;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.join-fields textarea {
  min-height: 62px;
  padding-top: 19px;
  padding-bottom: 19px;
  overflow-y: hidden;
  resize: none;
}
.join-fields select {
  color: #666;
  appearance: none;
  background-image: url('https://g4w6v.com/cf230705/image/1gs/n9/2ag/1bx/713177e5dc7d7ea522f0db798c6c7d3d.png');
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.join-fields input::placeholder,
.join-fields textarea::placeholder { color: #777; opacity: 1; }
.join-fields input:hover,
.join-fields select:hover,
.join-fields textarea:hover,
.join-select-trigger:hover { border-color: #525252; background-color: #252525; }
.join-fields input:focus,
.join-fields select:focus,
.join-fields textarea:focus,
.join-select-trigger:focus-visible,
.join-select.open .join-select-trigger {
  border-color: var(--join-accent);
  box-shadow: 0 0 0 3px rgba(var(--join-accent-rgb), .16);
}

.join-select { position: relative; width: 100%; }
.join-select.cs-ready > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.join-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  cursor: pointer;
  text-align: left;
}
.join-select-trigger.has-value { color: #fff; }
.join-select-arrow { width: 14px; height: 14px; opacity: .65; transition: transform .2s ease; }
.join-select.open .join-select-arrow { transform: rotate(180deg); }
.join-select-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 220px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #343434;
  border-radius: 16px;
  background: #222;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .38);
  scrollbar-color: #575757 #222;
  scrollbar-width: thin;
}
.join-select-option {
  padding: 11px 14px;
  border-radius: 10px;
  color: #bbb;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.join-select-option:hover,
.join-select-option.is-active { background: #303030; color: #fff; }
.join-select-option.is-selected { color: var(--join-accent); }
.join-select-option.is-disabled { color: #666; cursor: default; }

.join-status {
  min-height: 20px;
  margin: 18px 0 -8px;
  color: #aaa;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
.join-status.is-error { color: #ff9a9a; }
.join-status.is-success { color: #8ed2aa; }
.join-status.is-loading { color: var(--join-accent); }
.join-submit {
  width: 236px;
  height: 56px;
  margin: 40px auto 0;
  display: block;
  border: 1px solid var(--join-accent);
  border-radius: 999px;
  color: var(--join-accent);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.join-submit:hover {
  color: #17120a;
  background: var(--join-accent);
  box-shadow: 0 12px 28px rgba(var(--join-accent-rgb), .18);
  transform: translateY(-1px);
}
.join-submit:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.join-submit:disabled { opacity: .5; cursor: wait; transform: none; }

@media (max-width: 1180px) {
  .join-form { padding-right: 80px; padding-left: 80px; }
}

@media (min-width: 861px) {
  .join-fields textarea[name="talent"] {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .join-fields textarea[name="talent"]::-webkit-scrollbar { display: none; }
}

@media (max-width: 860px) {
  .join-hero { width: 100%; margin: 0; aspect-ratio: 375 / 653; }
  .join-apply-section { padding: 40px 0 20px; }
  .join-apply-shell { width: calc(100% - 40px); }
  .join-section-title { min-width: 170px; min-height: 65px; margin-bottom: 18px; }
  .join-section-title h1 { font-size: 36px; line-height: 40px; }
  .join-section-title p { margin-top: 7px; font-size: 10px; line-height: 12px; letter-spacing: 2.3px; }
  .join-form { min-height: 746px; padding: 40px 16px; border-radius: 36px; }
  .join-form-title { margin-bottom: 24px; font-size: 22px; line-height: 29px; }
  .join-fields { grid-template-columns: 1fr; gap: 16px; }
  .join-fields input,
  .join-fields select,
  .join-fields textarea,
  .join-select-trigger { height: 48px; margin-top: 8px; padding: 0 16px; }
  .join-fields textarea { min-height: 48px; padding-top: 12px; padding-bottom: 12px; }
  .join-fields select { background-position: right 16px center; }
  .join-submit { width: 132px; height: 37px; margin-top: 24px; font-size: 12px; }
  .join-status { min-height: 18px; margin: 12px 0 -8px; font-size: 12px; line-height: 18px; }
}

@media (max-width: 374px) {
  .join-apply-shell { width: calc(100% - 32px); }
  .join-form { padding-right: 14px; padding-left: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .join-hero .brand-hero-track,
  .join-submit,
  .join-select-arrow { transition: none; }
}
