@charset "UTF-8";


/*================================================
 * 
================================================*/

.jobList {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10rem;
}

.jobList a,
.jobList span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.8rem 0;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--zen-kaku);
  border-radius: 0.5rem;
  line-height: 1.7;
	min-height: 5em;
}

.jobList span {
  background: #cccccc;
}

.job_item {
  font-family: var(--zen-kaku);

  border-bottom: 1px solid #cccccc;
}

.job_item .label {
  font-size: 2.9rem;
  color: var(--color-primary);
  padding: 3rem 0 3rem;
  position: relative;
  cursor: pointer;
}

.job_item .label::before,
.job_item .label::after {
  position: absolute;
  content: "";
  background: var(--color-black);
  height: 1px;
  width: 3rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .2s;
}

.job_item .label::after {
  transform: translateY(-50%) rotate(90deg);
}

.job_item .label.open::after {
  transform: translateY(-50%) rotate(0deg);
}

.job_item .detail {
  display: none;
}

.job_outline {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

.job_outline dt {
  width: 23rem;
  padding: 0 1rem 0 2rem;
  background: rgb(102 212 162 / 10%);
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

.job_outline dd {
  width: calc(100% - 23rem);
  min-height: 9.7rem;
  font-size: 1.9rem;
  padding: 3.2rem;
  border-bottom: 1px solid #cccccc;
}


.job_item .entryBtn {
  margin: 5rem auto 10rem;
}

@media screen and (max-width:767px) {
  .jobList {
    gap: 0.6rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .jobList a,
  .jobList span {
    padding: 1rem 0;
    line-height: 1.3;
    font-size: 1.6rem;
  }



  .job_item .label {
    font-size: 2.3rem;
    padding: 2rem 0;
  }

  .job_item .label::before,
  .job_item .label::after {
    width: 2rem;
  }

  .job_outline {
    border: none;
  }

  .job_outline dt {
    width: 100%;
    padding: 1.6rem;
    align-items: start;
    border-bottom: none;
    font-size: 1.7rem;
    border-right: none;
  }

  .job_outline dd {
    width: 100%;
    font-size: 1.7rem;
    padding: 2rem 0;
    border-bottom: none;
  }


  .job_item .entryBtn {
    margin: 2rem auto 5rem;
  }
}


/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}