@charset "UTF-8";
/* =====================================================================
    新卒採用エントリーフォーム（entry.recruit-asue.info/new-graduate/）
    ※ scss/style.scss をコンパイルした結果。直接編集しないこと。
   ===================================================================== */
/* ============== リセット ============== */
* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Arial", "Helvetica Neue", "Helvetica", "Yu Gothic", "Meiryo", sans-serif;
  color: #332e2b;
  background: #f7f4f2;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 641px) {
  body {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

a {
  color: #f54614;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: inherit;
}

/* ============== ヘッダー ============== */
.ef-hdr {
  background: #fff;
  border-bottom: 1px solid #e5ded9;
}

.ef-hdr__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
}
@media screen and (min-width: 641px) {
  .ef-hdr__inner {
    padding: 14px 24px;
  }
}

.ef-hdr__ttl {
  margin: 0;
}

.ef-hdr__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #332e2b;
}

.ef-hdr__logo {
  height: 26px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .ef-hdr__logo {
    height: 32px;
  }
}

.ef-hdr__txt {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Arial", "Helvetica Neue", "Helvetica", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8a827d;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 641px) {
  .ef-hdr__txt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* ============== メイン ============== */
.ef-main {
  padding: 28px 16px 56px;
}
@media screen and (min-width: 641px) {
  .ef-main {
    padding: 40px 24px 72px;
  }
}

.ef-main__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ============== ヒーロー ============== */
.ef-hero {
  text-align: center;
  margin-bottom: 26px;
}

.ef-hero__en {
  margin: 0 0 6px;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Arial", "Helvetica Neue", "Helvetica", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #f54614;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 641px) {
  .ef-hero__en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.ef-hero__ttl {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 641px) {
  .ef-hero__ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.ef-hero__lead {
  margin: 0;
  color: #8a827d;
  font-size: 13px;
  font-size: 0.8125rem;
}

/* ============== ステップインジケータ ============== */
.ef-steps {
  display: flex;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.ef-steps__item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #8a827d;
}
.ef-steps__item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #e5ded9;
}
.ef-steps__item:first-child::before {
  display: none;
}

.ef-steps__num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9e2dd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Arial", "Helvetica Neue", "Helvetica", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.ef-steps__label {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
}

.ef-steps__item--current {
  color: #f54614;
}
.ef-steps__item--current .ef-steps__num {
  background: linear-gradient(135deg, #ff7a3c, #f54614);
  box-shadow: 0 2px 8px rgba(245, 70, 20, 0.3);
}

/* ============== カード ============== */
.ef-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 16px 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 641px) {
  .ef-card {
    padding: 30px 32px 34px;
    margin-bottom: 24px;
  }
}

.ef-card__head {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5ded9;
}

.ef-card__ttl {
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 641px) {
  .ef-card__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.ef-card__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 5px;
  height: 1.1em;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff7a3c, #f54614);
}

/* ============== フィールド ============== */
.ef-field {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}
.ef-field:last-child {
  margin-bottom: 0;
}

.ef-field--fieldset {
  min-width: 0;
}

.ef-field__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 641px) {
  .ef-field__label {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.ef-field__body {
  min-width: 0;
}

.ef-field__body--narrow {
  max-width: 320px;
}

/* ============== バッジ（必須／任意） ============== */
.ef-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-size: 0.6875rem;
}

.ef-badge--req {
  background: #f54614;
  color: #fff;
}

.ef-badge--opt {
  background: #fff;
  color: #8a827d;
  border: 1px solid #d8cfc9;
}

/* ============== 入力コントロール ============== */
.ef-input,
.ef-textarea,
.ef-select__native {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  color: #332e2b;
  background: #fff;
  border: 1px solid #ddd6d2;
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}
.ef-input::placeholder,
.ef-textarea::placeholder,
.ef-select__native::placeholder {
  color: #b6ada7;
}
.ef-input:focus,
.ef-textarea:focus,
.ef-select__native:focus {
  outline: none;
  border-color: #f54614;
  box-shadow: 0 0 0 3px rgba(245, 70, 20, 0.18);
}
.ef-input.is-invalid,
.ef-textarea.is-invalid,
.ef-select__native.is-invalid {
  border-color: #d32f2f;
  background: #fff7f7;
}

.ef-input--zip {
  max-width: 200px;
}

.ef-textarea {
  min-height: 140px;
  resize: vertical;
}

.ef-select {
  position: relative;
}
.ef-select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid #8a827d;
  border-bottom: 2px solid #8a827d;
  transform: rotate(45deg);
  pointer-events: none;
}

.ef-select__native {
  padding-right: 40px;
  cursor: pointer;
}

/* ============== 選択カード型ラジオ ============== */
.ef-choice {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ef-choice--inline {
  flex-direction: row;
  flex-wrap: wrap;
}

.ef-choice__item {
  position: relative;
  min-width: 0;
}

.ef-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.ef-choice__label {
  position: relative;
  display: block;
  padding: 14px 16px 14px 46px;
  background: #fff;
  border: 1px solid #ddd6d2;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
  font-size: 14px;
  font-size: 0.875rem;
}
.ef-choice__label::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 1px solid #c9bfb8;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.15s;
}
.ef-choice__label::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #f54614;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.15s, transform 0.15s;
}
.ef-choice__label:hover {
  border-color: #f0c6b6;
}

.ef-choice__input:checked + .ef-choice__label {
  border-color: #f54614;
  background: #fff3ee;
}
.ef-choice__input:checked + .ef-choice__label::before {
  border-color: #f54614;
}
.ef-choice__input:checked + .ef-choice__label::after {
  opacity: 1;
  transform: scale(1);
}

.ef-choice__input:focus-visible + .ef-choice__label {
  border-color: #f54614;
  box-shadow: 0 0 0 3px rgba(245, 70, 20, 0.18);
}

/* ============== 2カラム（姓名など） ============== */
.ef-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ef-duo__col {
  min-width: 0;
}

.ef-sublabel {
  display: block;
  margin-bottom: 4px;
  color: #8a827d;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
}

.ef-note {
  margin: 6px 0 0;
  color: #8a827d;
  font-size: 12px;
  font-size: 0.75rem;
}

.ef-question {
  margin: 0 0 10px;
  padding: 12px 14px;
  background: #faf7f5;
  border-radius: 10px;
  color: #5c5450;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 641px) {
  .ef-question {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* ============== 住所 ============== */
.ef-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ef-address__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media screen and (min-width: 641px) {
  .ef-address__row {
    grid-template-columns: 220px 1fr;
  }
}

.ef-address__col {
  min-width: 0;
}

/* ============== ファイル ============== */
.ef-file {
  min-width: 0;
}

.ef-file__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.ef-file__drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 26px 16px;
  text-align: center;
  background: #fffdfc;
  border: 2px dashed #ddd6d2;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}
.ef-file__drop:hover {
  border-color: #f54614;
  background: #fff3ee;
}

.ef-file--dragover .ef-file__drop {
  border-color: #f54614;
  background: #fff3ee;
}

.ef-file__input:focus-visible + .ef-file__drop {
  border-color: #f54614;
  box-shadow: 0 0 0 3px rgba(245, 70, 20, 0.18);
}

.ef-file__input.is-invalid + .ef-file__drop {
  border-color: #d32f2f;
  background: #fff7f7;
}

.ef-file__icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff3ee;
}
.ef-file__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-top: 2px solid #f54614;
  border-left: 2px solid #f54614;
  transform: rotate(45deg);
}
.ef-file__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 2px;
  height: 15px;
  margin-left: -1px;
  background: #f54614;
}

.ef-file__text {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.ef-file__note {
  color: #8a827d;
  font-size: 12px;
  font-size: 0.75rem;
}

.ef-file__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ef-file__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e5ded9;
  border-radius: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.ef-file__item--error {
  border-color: #d32f2f;
  background: #fff7f7;
}

.ef-file__name {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-all;
}

.ef-file__size {
  flex: 0 0 auto;
  color: #8a827d;
  font-size: 12px;
  font-size: 0.75rem;
}

.ef-file__remove {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f2ece8;
  cursor: pointer;
  transition: background-color 0.15s;
}
.ef-file__remove::before,
.ef-file__remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: -1px 0 0 -6px;
  background: #8a827d;
}
.ef-file__remove::before {
  transform: rotate(45deg);
}
.ef-file__remove::after {
  transform: rotate(-45deg);
}
.ef-file__remove:hover {
  background: #fff3ee;
}

/* ============== 同意チェック ============== */
.ef-agree__lead {
  margin: 0 0 14px;
  font-size: 14px;
  font-size: 0.875rem;
}

.ef-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #ddd6d2;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
  font-size: 14px;
  font-size: 0.875rem;
}
.ef-check:hover {
  border-color: #f0c6b6;
  background: #fff3ee;
}

.ef-check--invalid {
  border-color: #d32f2f;
  background: #fff7f7;
}

.ef-check__input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #f54614;
  cursor: pointer;
}

.ef-check__text {
  font-weight: 500;
}

/* ============== エラー ============== */
.ef-error {
  margin: 6px 0 0;
  color: #d32f2f;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
}
.ef-error:empty {
  display: none;
}

/* ============== ボタン ============== */
.ef-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 641px) {
  .ef-actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

@media screen and (min-width: 641px) {
  .ef-actions--confirm {
    flex-direction: row-reverse;
  }
}

.ef-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  min-height: 56px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s, background-color 0.2s, color 0.2s;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 641px) {
  .ef-btn {
    width: auto;
    min-width: 280px;
  }
}
.ef-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 70, 20, 0.18);
}

.ef-btn--cta {
  background: linear-gradient(135deg, #ff7a3c, #f54614);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 70, 20, 0.28);
}
.ef-btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 70, 20, 0.32);
}
.ef-btn--cta:disabled {
  background: #c9bfb8;
  box-shadow: none;
  transform: none;
  opacity: 0.8;
  cursor: not-allowed;
}

.ef-btn--ghost {
  background: #fff;
  color: #f54614;
  border-color: #f0c6b6;
}
.ef-btn--ghost:hover {
  background: #fff3ee;
}

/* ============== 確認画面 ============== */
.ef-confirm__head {
  margin-bottom: 20px;
  text-align: center;
}

.ef-confirm__ttl {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 641px) {
  .ef-confirm__ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.ef-confirm__lead {
  margin: 0;
  color: #8a827d;
  font-size: 13px;
  font-size: 0.8125rem;
}

.ef-dl {
  margin: 0;
}

.ef-dl__row {
  padding: 14px 0;
  border-bottom: 1px dashed #e5ded9;
}
@media screen and (min-width: 641px) {
  .ef-dl__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
  }
}
.ef-dl__row:first-child {
  padding-top: 0;
}
.ef-dl__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.ef-dl__dt {
  margin: 0 0 4px;
  color: #8a827d;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 641px) {
  .ef-dl__dt {
    margin-bottom: 0;
  }
}

.ef-dl__dd {
  margin: 0;
  word-break: break-word;
}
.ef-dl__dd:empty::before {
  content: "（未入力）";
  color: #b6ada7;
}

.ef-dl__dd--long {
  white-space: pre-wrap;
}

.ef-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============== サンクスページ ============== */
.ef-thanks {
  text-align: center;
  padding: 40px 20px 44px;
}
@media screen and (min-width: 641px) {
  .ef-thanks {
    padding: 56px 40px 60px;
  }
}

.ef-thanks__icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff3ee;
}
.ef-thanks__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 15px;
  margin: -12px 0 0 -14px;
  border-left: 3px solid #f54614;
  border-bottom: 3px solid #f54614;
  transform: rotate(-45deg);
}

.ef-thanks__en {
  margin: 0 0 8px;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Arial", "Helvetica Neue", "Helvetica", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #f54614;
  font-size: 12px;
  font-size: 0.75rem;
}

.ef-thanks__ttl {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 641px) {
  .ef-thanks__ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.ef-thanks__lead {
  margin: 0;
  color: #5c5450;
  font-size: 14px;
  font-size: 0.875rem;
}

/* ============== ページトップへ ============== */
.ef-pagetop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a3c, #f54614);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
@media screen and (min-width: 641px) {
  .ef-pagetop {
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
  }
}

.ef-pagetop--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ef-pagetop__arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(2px) rotate(-45deg);
}

/* ============== フッター ============== */
.ef-ftr {
  background: #fff;
  border-top: 1px solid #e5ded9;
  padding: 24px 20px;
  text-align: center;
}

.ef-ftr__nav {
  margin: 0 0 8px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.ef-ftr__link {
  color: #332e2b;
  text-decoration: none;
  border-bottom: 1px solid #e5ded9;
}
.ef-ftr__link:hover {
  color: #f54614;
}

.ef-ftr__copy {
  margin: 0;
  color: #8a827d;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Arial", "Helvetica Neue", "Helvetica", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-size: 0.6875rem;
}
