@charset "UTF-8";
.job {
  padding-block: 80px;
}
@media (max-width: 980px) {
  .job {
    padding-block: 40px;
  }
}

.job-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.job-list__item.is-open .job-detail {
  margin-top: 24px;
  max-height: 10000px;
  padding: 40px 68px 80px;
  opacity: 1;
}
@media (max-width: 980px) {
  .job-list__item.is-open .job-detail {
    padding: 24px;
  }
}
.job-list__item.is-open .job-list__icon svg {
  transform: rotate(180deg);
}
.job-list__item.is-muted .job-list__toggle {
  border: 1px solid var(--color-red);
  background-color: transparent;
}
.job-list__item.is-muted .job-list__areas {
  display: none;
}

/* =========================================================================
   TOGGLE
   ========================================================================= */
.job-list__toggle {
  width: 100%;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: stretch;
  background-color: var(--color-white);
}

.job-list__content {
  flex-grow: 1;
  padding: 33px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
@media (max-width: 980px) {
  .job-list__content {
    padding: 24px 12px;
  }
}

.job-list__title {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: var(--color-red);
  font-weight: 700;
}
@media (max-width: 768px) {
  .job-list__title {
    font-size: 18px;
  }
}

.job-list__areas {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 4px;
}

.job-list__area {
  display: inline-block;
  padding: 4px 24px;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid;
  line-height: 170%;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .job-list__area {
    font-size: 12px;
  }
}
.job-list__area.is-active {
  background-color: var(--color-white);
  border-color: var(--color-red);
  color: var(--color-red);
}
.job-list__area.is-muted {
  background-color: #cccccc;
  border-color: transparent;
  color: var(--color-white);
}

.job-list__closed-text {
  color: var(--color-red);
  line-height: 140%;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .job-list__closed-text {
    font-size: 14px;
  }
}

.job-list__icon {
  width: 40px;
  flex-shrink: 0;
  background-color: var(--color-red);
  display: grid;
  place-items: center;
}
@media (max-width: 980px) {
  .job-list__icon {
    width: 24px;
  }
}
.job-list__icon svg {
  transition: transform 0.3s;
}

/* =========================================================================
   DETAIL
   ========================================================================= */
.job-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  margin: 0 auto;
  width: 70%;
  max-width: 800px;
  padding: 0 68px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border-radius: 8px;
  color: var(--color-text);
  opacity: 0;
}
@media (max-width: 980px) {
  .job-detail {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
  }
}

.job-detail__table {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.job-detail__row {
  padding-block: 24px;
  border-bottom: 1px solid var(--color-text);
  display: flex;
  align-items: start;
  gap: 12px;
}
@media (max-width: 1280px) {
  .job-detail__row {
    flex-direction: column;
  }
}
.job-detail__row:last-of-type {
  border: none;
}

.job-detail__row-head {
  width: 160px;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.04em;
}
@media (max-width: 1280px) {
  .job-detail__row-head {
    width: 100%;
  }
}

.job-detail__row-body {
  flex-grow: 1;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 980px) {
  .job-detail__row-body {
    font-size: 14px;
  }
}

.job-detail__contact-mail {
  color: var(--color-red);
  text-decoration: underline;
}

/* =========================================================================
   ENTRY BUTTON
   ========================================================================= */
.job-entry {
  margin-top: 40px;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: var(--color-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .job-entry {
    margin-inline: auto;
    padding: 13px 24px;
    width: 200px;
    box-sizing: border-box;
    justify-content: start;
  }
}
.job-entry:hover .job-entry__icon svg {
  animation: arrow-fly 0.4s ease forwards;
}

.job-entry__img {
  width: 120px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .job-entry__img {
    display: none;
  }
}

.job-entry__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
@media (max-width: 768px) {
  .job-entry__title {
    display: block;
  }
}

.job-entry__title-jp {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .job-entry__title-jp {
    font-size: 18px;
  }
}

.job-entry__title-en {
  font-family: "Antro Vectra Bolder", cursive !important;
  font-size: 24px;
}
@media (max-width: 768px) {
  .job-entry__title-en {
    display: none;
  }
}

.job-entry__icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  .job-entry__icon {
    right: 8px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}

.entry {
  padding-block: 80px;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .entry {
    padding-block: 40px;
  }
}
@media (max-width: 768px) {
  .entry .job-list__toggle {
    width: calc(100% - 48px);
    margin-inline: auto;
  }
}

/* =========================================================================
   MESSAGE
   ========================================================================= */
.entry__message {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .entry__message {
    place-items: start;
  }
}

.entry__text {
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .entry__text {
    text-align: left;
    font-size: 14px;
  }
}

/* =========================================================================
   FORM BOX
   ========================================================================= */
.entry__form-box {
  margin-top: 80px;
  padding: 64px 96px;
  box-sizing: border-box;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .entry__form-box {
    margin-top: 71px;
    padding: 32px 12px;
  }
}

.entry__form-message {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-text);
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .entry__form-message {
    font-size: 14px;
  }
}

.entry-form-content {
  margin-top: 40px;
}

.entry-attention {
  margin-top: 40px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07em;
  text-align: center;
}
@media (max-width: 768px) {
  .entry-attention {
    font-size: 14px;
  }
}

/* =========================================================================
   FORM(Contact Form 7)
   ========================================================================= */
.entry-form__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1023px) {
  .entry-form__list {
    gap: 48px;
  }
}

.entry-form__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1023px) {
  .entry-form__item {
    gap: 8px;
  }
}

.entry-form__label {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .entry-form__label {
    font-size: 14px;
  }
}

.entry-form__req {
  padding-inline: 8px;
  box-sizing: border-box;
  background-color: var(--color-red);
  border-radius: 2px;
  color: var(--color-white);
  font-size: 12px;
  text-align: center;
}

.entry-form__free {
  padding-inline: 8px;
  box-sizing: border-box;
  background-color: #cccccc;
  border-radius: 2px;
  color: var(--color-white);
  font-size: 12px;
  text-align: center;
}

.entry-form__opt {
  padding-inline: 8px;
  box-sizing: border-box;
  background-color: #cccccc;
  border-radius: 2px;
  color: var(--color-white);
  font-size: 12px;
  text-align: center;
}

.entry-form__disc {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.07em;
}

.entry-form__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.entry-form__field input,
.entry-form__field textarea {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 4px;
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .entry-form__field input,
  .entry-form__field textarea {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.entry-form__field input::placeholder,
.entry-form__field textarea::placeholder {
  color: #b7b7b7;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .entry-form__field input::placeholder,
  .entry-form__field textarea::placeholder {
    font-size: 14px;
  }
}
.entry-form__field textarea {
  min-height: 90px;
  resize: vertical;
}
@media (max-width: 1023px) {
  .entry-form__field textarea {
    min-height: 60px;
  }
}
.entry-form__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  width: 400px;
  padding: 16px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 4px;
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: var(--color-text);
}
@media (max-width: 1023px) {
  .entry-form__field select {
    padding: 8px 16px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .entry-form__field select {
    width: 115px;
  }
}

.entry-form__birthday {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}
.entry-form__birthday .wpcf7-form-control-wrap {
  width: auto;
}
.entry-form__birthday input {
  width: 120px;
}
@media (max-width: 768px) {
  .entry-form__birthday input {
    width: 68px;
  }
}

.entry-form__birthday-text {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .entry-form__birthday-text {
    font-size: 14px;
  }
}

.entry-form__radio-group .wpcf7-form-control,
.graduation-radio-group .wpcf7-form-control {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
}
.entry-form__radio-group .wpcf7-list-item,
.graduation-radio-group .wpcf7-list-item {
  margin: 0;
}
.entry-form__radio-group .wpcf7-list-item label,
.graduation-radio-group .wpcf7-list-item label {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.entry-form__radio-group .wpcf7-list-item input[type=radio],
.graduation-radio-group .wpcf7-list-item input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.entry-form__radio-group .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after,
.graduation-radio-group .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.entry-form__radio-group .wpcf7-list-item-label,
.graduation-radio-group .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 16px;
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .entry-form__radio-group .wpcf7-list-item-label,
  .graduation-radio-group .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.entry-form__radio-group .wpcf7-list-item-label::before, .entry-form__radio-group .wpcf7-list-item-label::after,
.graduation-radio-group .wpcf7-list-item-label::before,
.graduation-radio-group .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  margin-top: 1px;
}
.entry-form__radio-group .wpcf7-list-item-label::before,
.graduation-radio-group .wpcf7-list-item-label::before {
  left: 0;
  width: 12px;
  border: 1px solid var(--color-red);
  background-color: var(--color-white);
}
.entry-form__radio-group .wpcf7-list-item-label::after,
.graduation-radio-group .wpcf7-list-item-label::after {
  left: 3px;
  width: 8px;
  background-color: var(--color-red);
  opacity: 0;
  transition: opacity 0.3s;
}

.entry-form__subrow--zip {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}
.entry-form__subrow--zip .wpcf7-form-control-wrap {
  width: auto;
}
.entry-form__subrow--zip input {
  width: 103px;
}
@media (max-width: 768px) {
  .entry-form__subrow--zip input {
    width: 94px;
  }
}

.entry-form__sublabel {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .entry-form__sublabel {
    font-size: 14px;
  }
}

.entry-form__subrow--pref,
.entry-form__subrow--city,
.entry-form__subrow--num {
  margin-top: 12px;
  width: 100%;
}
@media (max-width: 1023px) {
  .entry-form__subrow--pref,
  .entry-form__subrow--city,
  .entry-form__subrow--num {
    margin-top: 8px;
  }
}

@media (max-width: 1023px) {
  .education {
    padding-left: 18px;
  }
}

.education-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.education-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1023px) {
  .education-item {
    flex-direction: column;
    align-items: start;
  }
  .education-item:first-of-type {
    flex-direction: row;
    align-items: center;
  }
  .education-item:first-of-type .education-head {
    min-width: 72px;
  }
}

.education-head {
  min-width: 140px;
  text-align: right;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.07em;
}
@media (max-width: 1023px) {
  .education-head {
    text-align-last: left;
  }
}
.education-head .small {
  display: block;
  font-size: 12px;
  line-height: 140%;
}
@media (max-width: 1023px) {
  .education-head .small br {
    display: none;
  }
}

.education-body {
  width: 100%;
}
.education-body .wpcf7-form-control-wrap {
  display: block;
}
.education-body select {
  width: 299px;
}
@media (max-width: 768px) {
  .education-body select {
    width: 100%;
  }
}
.education-body input {
  width: 299px;
}
@media (max-width: 1023px) {
  .education-body input {
    width: 100%;
  }
}
.education-body .school-name,
.education-body .major,
.education-body .other {
  width: 100%;
}

.education-graduation {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 980px) {
  .education-graduation {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
}

.graduation-date {
  display: flex;
  align-items: center;
  gap: 8px;
}
.graduation-date .wpcf7-form-control-wrap {
  width: auto;
}
.graduation-date input {
  width: 100px;
}

.graduation-date__text {
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.career-boxes {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .career-boxes {
    padding-left: 20px;
  }
}

.career-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .career-list {
    gap: 8px;
  }
}

.career-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .career-item {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
}

.career-head {
  min-width: 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .career-head {
    min-width: 0;
    width: 100%;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .career-head--main {
    font-size: 14px;
  }
}

.career-head--sub {
  font-size: 14px;
}
@media (max-width: 768px) {
  .career-head--sub {
    font-size: 12px;
  }
}

.career-body {
  flex-grow: 1;
}
.career-body textarea {
  height: 240px;
}
@media (max-width: 768px) {
  .career-body {
    width: 100%;
    flex: 1;
  }
  .career-body textarea {
    height: 120px;
  }
}

.other {
  height: 240px;
}
@media (max-width: 768px) {
  .other {
    height: 120px;
  }
}

.entry-privacy {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.entry-privacy__text {
  text-align: center;
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .entry-privacy__text {
    font-size: 14px;
  }
}
.entry-privacy__text a {
  color: inherit;
  text-decoration: underline;
}

.entry-form__check .wpcf7-list-item {
  margin: 0;
}
.entry-form__check .wpcf7-list-item label {
  display: inline-block;
  padding-left: 28px;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 0.07em;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .entry-form__check .wpcf7-list-item label {
    font-size: 14px;
  }
}
.entry-form__check .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  clip: auto;
  width: 20px;
  height: 20px;
  margin: 0;
}
.entry-form__check .wpcf7-list-item-label {
  padding-left: 0;
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.entry-form__check .wpcf7-list-item-label::before, .entry-form__check .wpcf7-list-item-label::after {
  display: none;
}

.entry-form__actions {
  margin-top: 37px;
  text-align: center;
}

.entry-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-red);
  border: none;
  text-decoration: none;
  color: var(--color-white);
  width: 200px;
  height: 48px;
  padding: 8px 8px 8px 24px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 18px;
  border-radius: 2px;
  cursor: pointer;
}
.entry-form__submit .icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.entry-form__submit span:first-child {
  flex-grow: 1;
  text-align-last: left;
}
.entry-form__submit:hover {
  opacity: 0.95;
}
.entry-form__submit:hover .icon svg {
  animation: arrow-fly 0.4s ease forwards;
}
.entry-form__submit.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.entry-form__submit-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 180%;
}

.wpcf7-not-valid {
  border-color: #d33 !important;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 160%;
  color: #d33;
}

.entry-form__radio-group .wpcf7-not-valid-tip,
.graduation-radio-group .wpcf7-not-valid-tip,
.entry-form__check .wpcf7-not-valid-tip {
  margin-top: 8px;
}

/* =========================================================================
   MODAL（希望職種選択）
   ========================================================================= */
/* ---------------------------------
   1. Trigger（form > position select）
--------------------------------- */
.entry-form__select-trigger {
  min-width: 400px;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  text-align: left;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .entry-form__select-trigger {
    min-width: 200px;
    padding: 8px 16px;
    min-height: auto;
  }
}

.entry-form__select-text {
  color: var(--color-text);
  line-height: 180%;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* ---------------------------------
   2. Modal base
--------------------------------- */
.entry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.entry-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.entry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(177, 177, 177, 0.8);
}
.entry-modal__overlay:after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../../img/career/page/job/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  top: 16px;
  right: 16px;
}
@media (max-width: 980px) {
  .entry-modal__overlay:after {
    width: 24px;
    height: 24px;
  }
}

.entry-modal__dialog {
  position: relative;
  z-index: 1;
  max-height: 85vh;
  max-width: 1220px;
  padding-inline: 40px;
  box-sizing: border-box;
  margin: 80px auto;
  overflow: auto;
}
@media (max-width: 980px) {
  .entry-modal__dialog {
    padding-inline: 15px;
  }
}

.entry-modal__title {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: var(--color-red);
}
@media (max-width: 980px) {
  .entry-modal__title {
    font-size: 18px;
    padding: 0 24px;
  }
}

/* ---------------------------------
   3. Modal inner layout
--------------------------------- */
.entry-modal .job {
  margin-top: 24px;
  padding: 0;
}
.entry-modal .job-detail {
  width: 100%;
}
.entry-modal .job-list__item.is-muted .job-list__toggle {
  background-color: #cccccc;
}

/* ---------------------------------
   4. Accordion state in modal
--------------------------------- */
.entry-modal .job-list__item.is-open .job-panel {
  max-height: 10000px;
  opacity: 1;
  margin-top: 40px;
}
@media (max-width: 980px) {
  .entry-modal .job-list__item.is-open .job-panel {
    margin-top: 24px;
  }
}
.entry-modal .job-list__item.is-open .job-list__icon svg {
  transform: rotate(180deg);
}

/* ---------------------------------
   5. Accordion panel（開閉される中身全体）
--------------------------------- */
.job-panel {
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
@media (max-width: 980px) {
  .job-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}

/* ---------------------------------
   6. Select action area（上部ボタン枠）
--------------------------------- */
.job-panel__action {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .job-panel__action {
    justify-content: center;
    margin-bottom: 16px;
  }
}

/* ---------------------------------
   7. Select button（共通ボタン）
--------------------------------- */
.entry-modal__select-button {
  display: inline-block;
  min-width: 200px;
  padding: 13px 24px;
  box-sizing: border-box;
  background-color: var(--color-red);
  border: none;
  color: var(--color-white);
  font-size: 18px;
  text-align: left;
  position: relative;
}

.entry-modal__select-button-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  width: 32px;
  height: 32px;
  background: var(--color-white);
  display: grid;
  place-items: center;
}

/* ---------------------------------
   8. Bottom action（詳細下のボタン枠）
--------------------------------- */
.entry-modal__select {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.entry-form__field .entry-form__subrow--zip input {
  min-width: 140px;
}/*# sourceMappingURL=entry.css.map */