.section-title-en {
  font-size: 80px;
  color: #187fc3;
  /*font-family: "Area Variable", Arial, sans-serif;*/
  padding: 160px 0 0 0;
}
.section-title-ja {
  font-size: 32px;
  /*font-family: "A-OTF 見出ゴMB31 Pr5", sans-serif;*/
  font-weight: bold;
  line-height: 30px;
  padding: 0 0 160px 0;
}
@media (max-width: 800px) {
  .section-title-en {
    font-size: clamp(40px, calc(100vw / 10), 80px);
    padding: 100px 0 10px;
    line-height: 62px;
  }
  .section-title-ja {
    font-size: clamp(18px, calc(100vw / 42), 32px);
    padding: 10px 0 100px 0;
    line-height: 10px;
  }
}
@media (max-width: 480px) {
  .section-title-en {
    padding: 50px 0 0;
    font-size: 32px;
    line-height: 32px;
  }
  .section-title-ja {
    padding: 18px 0 60px;
    line-height: 6px;
  }
}
.category {
  font-size: 32px;
  color: #187fc3;
  font-weight: bold;
  /*font-family: "Area Variable", Arial, sans-serif;*/
  padding-bottom: 30px;
}
.select {
  padding: 5px 30px;
  border: 1px solid #6d6d6d;
  border-radius: 30px;
  font-weight: bold;
  color: #6d6d6d;
}
.select:hover {
  color: #187fc3;
  border: 1px solid #187fc3;
  background-color: #d1e5e4;
}
.select.current {
  color: #187fc3;
  border: 1px solid #187fc3;
  background-color: #d1e5e4;
}
.select-wrapper {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #6d6d6d;
  padding-bottom: 30px;
  margin-bottom: 60px;
}
.article-all-wrapper {
  display: block;
  text-align: left;
  font-size:0;
  margin-bottom: 60px;
}
.article-all-wrapper > p {
  padding-top:60px;
  text-align: center;
  color: #333333;
  
  font-size: 20px;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.05em;
}
article {
  display:inline-block;
  vertical-align: top;
  background-color: #fff;
  box-shadow: 0 0 10px #e2e2e2;
  border-radius: 20px;
  width: calc((100% - 20px * 2) / 3);
  margin-top:26px;
  margin-right:20px;
}
article:nth-of-type(-n+3) {
  margin-top:0;
}
article:nth-of-type(3n) {
  margin-right:0;
}
/*
.article-all-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 26px;
  margin-bottom: 60px;
}
article {
  background-color: #fff;
  box-shadow: 0 0 10px #e2e2e2;
  border-radius: 20px;
  max-width: 400px;
  flex: 1 1 calc(33% - 20px);
  min-width: 240px;
}
*/
.article-img {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.article-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.article-btn:hover .article-img img {
  transform: scale(1.1);
}
.article-text-wrapper {
  padding: 25px 30px;
}
.article-tag {
  font-weight: bold;
  color: #6d6d6d;
  border: 1px solid #6d6d6d;
  border-radius: 30px;
  padding: 5px 30px;
  display: inline;
  font-size: 18px;
  margin-right:5px;
}
.article-text {
  margin: 20px 0 0 0;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 1070px) {
  .article-text {
    font-size: 12px;
    margin-top: 5px;
  }
  .article-time {
    font-size: 10px;
  }
  .article-tag {
    font-size: 10px;
    padding: 3px 10px;
  }
}
@media (max-width: 823px) {
  article {
    display:inline-block;
    vertical-align: top;
    background-color: #fff;
    box-shadow: 0 0 10px #e2e2e2;
    border-radius: 20px;
    width: calc(50% - 10px);
    margin-top:20px;
    margin-right:10px;
  }
  article:nth-of-type(-n+3) {
    margin-top:20px;
  }
  article:nth-of-type(3n) {
    margin-right:10px;
  }
  article:nth-of-type(2n) {
    margin-left:10px;
    margin-right:0;
  }
  /*
  article {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
  }
  */
  .article-text-wrapper {
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .select {
    font-size: 12px;
    padding: 3px 20px;
  }
  .category {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .select-wrapper {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .article-all-wrapper {
    margin-bottom: 40px;
  }
  article {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50%);
  }

  .article-all-wrapper {
    column-gap: 10px;
    row-gap: 16px;
  }
  .article-all-wrapper > p {
    padding-top:60px;
    text-align: center;
    color: #333333;

    font-size: 18px;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.05em;
  }
  article {
    border-radius: 10px;
  }
  .article-img {
    border-radius: 10px 10px 0 0;
  }
}

.next-wrapper {
  margin-bottom: 150px;
  display: flex;
  column-gap: 15px;
  align-items: center;
  justify-content: center;
}
.next-number {
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #6d6d6d;
  border: 1px solid #6d6d6d;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.next-number:hover {
  color: #fff;
  background-color: #6d6d6d;
}
.next {
  font-size: 24px;
  color: #6d6d6d;
  transition: all 0.3s ease;
}
.next:hover {
  opacity: 0.6;
}
@media (max-width: 480px) {
  .next-wrapper {
    margin-bottom: 80px;
    column-gap: 8px;
  }
  .next-number {
    font-size: 14px;
    width: 35px;
    height: 35px;
  }
  .next {
    font-size: 14px;
  }
}


.job_pagination{
  margin-bottom: 150px;
  text-align: center;
  position:relative;
  display:flex;
  justify-content: center;
  column-gap: 15px;
}
.job_pagination a.page-numbers,
.job_pagination span.page-numbers{
  display:flex;
  justify-content: center;
  align-items: center;
  padding-top:0;
  width:55px;
  height:55px;
  margin:0 0;
  border-radius:50%;
  background:#FFFFFF;
  border: 1px solid #6d6d6d;
  text-align: center; 
  color:#6d6d6d;
  
  font-size:24px;
  font-weight:500;
  line-height:2.0rem;
  letter-spacing: 0.05em;
  
  transition: 0.3s;
}
.job_pagination a.page-numbers:hover,
.job_pagination span.page-numbers:hover{
  background:#6d6d6d;
  border: 1px solid #6d6d6d;
  color:#FFFFFF;
}
.job_pagination span.current{
  background:#6d6d6d;
  color:#FFFFFF;
}
.job_pagination span.current:hover{
  background:#6d6d6d;
  color:#FFFFFF;
}


@media all and (max-width: 480px) {
  .job_pagination{
    margin-bottom: 80px;
    text-align: center;
    position:relative;
    display:flex;
    justify-content: center;
    column-gap: 8px;
  }
  .job_pagination a.page-numbers,
  .job_pagination span.page-numbers{
    display:flex;
    justify-content: center;
    align-items: center;
    padding-top:0;
    width:35px;
    height:35px;
    margin:0 0;
    border-radius:50%;
    background:#FFFFFF;
    border: 1px solid #6d6d6d;
    text-align: center; 
    color:#6d6d6d;

    font-size:14px;
    font-weight:500;
    line-height:2.0rem;
    letter-spacing: 0.05em;

    transition: 0.3s;
  }
  .job_pagination a.page-numbers:hover,
  .job_pagination span.page-numbers:hover{
    background:#6d6d6d;
    border: 1px solid #6d6d6d;
    color:#FFFFFF;
  }
  .job_pagination span.current{
    background:#6d6d6d;
    color:#FFFFFF;
  }
  .job_pagination span.current:hover{
    background:#6d6d6d;
    color:#FFFFFF;
  }
}
