@charset "UTF-8";
/*-----------------------------
  Job
-----------------------------*/
.sec-job {
  max-width: var(--size-content);
  margin: var(--size-block) auto calc(var(--size-block) * 2);
  border-radius: 1.6rem;
}
.sec-job .lead {
  font-size: 2rem;
}
.sec-job .job-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: var(--size-block);
}
.sec-job .job-list li a {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.6rem;
  background: #fff;
  border-radius: 2.4rem;
  box-shadow: var(--deco-dropshadow-area);
}
.sec-job .job-list li figure {
  flex: 0 0 20rem;
  aspect-ratio: 200 / 300;
  border-radius: 1.6rem;
  background: var(--color-grey-200);
}
.sec-job .job-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.sec-job .job-list li p {
  flex: 1 1 auto;
  padding-right: 3.2rem;
  background: url(/recruit/assets/img/common/ico-chevron-right.webp) no-repeat right center/1.2rem auto;
}
@media (max-width: 768px) {
  .sec-job {
    margin: 4rem var(--size-inline);
    padding: 0;
  }
  .sec-job .lead {
    font-size: 1.6rem;
  }
  .sec-job .job-list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .sec-job .job-list li a {
    gap: 1.6rem;
    border-radius: 1.6rem;
  }
  .sec-job .job-list li figure {
    flex: 0 0 15rem;
    border-radius: 0.8rem;
  }
}
/*-----------------------------
  Post content
-----------------------------*/
.sec-post-content {
  display: flow-root;
  max-width: 73rem;
  margin: var(--size-block) auto;
}
.sec-post-content .article-header h2 {
  margin-bottom: 2.4rem;
}
.sec-post-content .article-header > figure {
  margin: 4rem auto;
  text-align: center;
}
.sec-post-content .article-header > figure img {
  border-radius: 1.6rem;
}
.sec-post-content .article-header > .lead {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.8;
}
.sec-post-content .wp-content-block {
  margin-top: var(--size-block);
}
@media (max-width: 768px) {
  .sec-post-content {
    margin-inline: var(--size-inline);
  }
  .sec-post-content .article-header > .lead {
    font-size: 1.8rem;
  }
  .sec-post-content .wp-content-block{
    margin-top: calc(var(--size-block) * 2);
  }
}
/*-----------------------------
  Other
-----------------------------*/
.sec-other {
  display: flow-root;
  max-width: 73rem;
  margin: calc(var(--size-block) * 2) auto;
}
.sec-other ul {
  flex: 0 0 54rem;
}
.sec-other ul li {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-grey-200);
}
.sec-other ul li + li {
  margin-top: 2.4rem;
}
.sec-other ul a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: url(/recruit/assets/img/common/ico-chevron-right.webp) no-repeat right center / 1.2rem auto;
}
.sec-other ul figure {
  flex: 0 0 10rem;
  aspect-ratio: 200/300;
  background: var(--color-grey-200);
  border-radius: 1.6rem;
  text-align: center;
}
.sec-other ul figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.sec-other ul p {
  flex: 1 1 auto;
  padding-right: 3.2rem;
}
.sec-other .mod-button-primary{
  margin: 4rem auto 0;
}
@media (max-width: 768px) {
  .sec-other {
    margin-inline: var(--size-inline);
  }
  .sec-other ul {
    margin-top: 3.2rem;
  }
}
