/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.p-pageheader.career .title .en {
  font-size: clamp(2rem, 0.3636363636rem + 4.5454545455vw, 4rem);
}
.p-pageheader.career .title .jp {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}

/* --------------------------------- */
.c-job-contents {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-sm);
}
.c-job-index {
  max-width: 1400px;
  margin-inline: auto;
  padding-block: var(--space-sm);
  padding-inline: var(--space-xs);
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
.c-job-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.c-job-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.c-job-header .title {
  display: block;
  font-size: clamp(1.5rem, 0.6818181818rem + 2.2727272727vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
}
.c-job-header .tag {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-job-header .tag a {
  height: 32px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background-color: var(--bg-color);
  border: 1px solid var(--accent-color);
  box-sizing: border-box;
  font-size: clamp(0.75rem, 0.6988636364rem + 0.1420454545vw, 0.8125rem);
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-color);
  transition: var(--hover-animation-speed);
}
.c-job-header .tag a:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.c-job-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 5px;
  overflow: hidden;
}
.c-job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-job-list {
  width: 100%;
  grid-template-columns: repeat(8, 1fr);
  border-block-stop: 1px solid rgba(0, 0, 0, 0.15);
}
.c-job-list dt,
.c-job-list dd {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  line-height: 1.8;
}
.c-job-list dt {
  padding-block-start: 20px;
  font-weight: 600;
}
.c-job-list dd {
  padding-block-end: 20px;
  grid-column: 3/9;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
}
.c-job-list dd p {
  margin-block: var(--space-xs);
}
.c-job-list dd p:first-child {
  margin-block-start: 0;
}
.c-job-list dd p:last-child {
  margin-block-end: 0;
}
.c-job-entry {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.c-job-entry a {
  width: 100%;
  height: clamp(60px, 5vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--accent-color);
  border-radius: clamp(30px, 2.5vw, 40px);
  text-decoration: none;
  box-sizing: border-box;
  font-size: clamp(1.25rem, 1.0454545455rem + 0.5681818182vw, 1.5rem);
  font-weight: 600;
  color: var(--accent-color);
  transition: var(--hover-animation-speed);
}
.c-job-entry a:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.c-job-repage {
  width: 50%;
  max-width: 400px;
  margin-inline: auto;
}
.c-job-repage a {
  width: 100%;
  height: clamp(40px, 4vw, 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: clamp(30px, 2.5vw, 40px);
  text-decoration: none;
  box-sizing: border-box;
  font-size: clamp(0.875rem, 0.6704545455rem + 0.5681818182vw, 1.125rem);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  transition: var(--hover-animation-speed);
}
.c-job-repage a:hover {
  background-color: var(--text-color);
  border-color: var(--text-color);
  color: var(--bg-color);
}
@media screen and (min-width: 992px) {
  .c-job-index {
    padding-inline: 0;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    column-gap: var(--space-xxs);
  }
  .c-job-inner {
    grid-column: 2/10;
  }
  .c-job-image {
    aspect-ratio: 16/9;
  }
  .c-job-list {
    display: grid;
  }
  .c-job-list dt,
  .c-job-list dd {
    padding-block: 30px;
    border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .c-job-list dt {
    grid-column: 1/3;
  }
  .c-job-list dd {
    grid-column: 3/9;
  }
}

/* --------------------------------- */